本文介绍了是否可以将AVPlayer设置为允许设备在视频播放期间进入睡眠状态?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个涉及使用AVPlayer在界面背景中播放视频的应用程序.
I am working on an application that involves using AVPlayer to have a video in the background of an interface.
我们发现,在播放视频时,该应用永远不会进入睡眠状态.有没有办法告诉AVPlayer允许应用程序无论如何进入睡眠状态?
We've found that while video is playing, the app will never go to sleep. Is there a way to tell AVPlayer to allow the app to go to sleep regardless?
推荐答案
在AVPlayer
实例上将preventsDisplaySleepDuringVideo
设置为false
或NO
.
https://developer.apple.com/documentation/avfoundation/avplayer/2990522-防止在视频p期间显示睡眠状态
这篇关于是否可以将AVPlayer设置为允许设备在视频播放期间进入睡眠状态?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!