gpt4 book ai didi

ios - 在 iOS 设备锁定时保持应用程序运行?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:21 25 4
gpt4 key购买 nike

我有一个大量使用视频输出的应用程序。在典型的用例中,我会将 iPad 连接到外部显示器。我只想打开外接显示器; iPad 显示屏不需要一直亮着。

理想的情况是有人连接到外部显示器,然后锁定他们的 iPad。但这会暂停我的应用程序。 (目前,我正在调用 setIdleTimerDisabled 以防止 iPad 锁定和暂停我的应用程序。)

我想为用户提供锁定 iPad 的选项,但仍然让我的应用程序运行并将图像发送到视频。 (注意:我不是在谈论让我的应用程序在不在前台运行时保持运行。我只是想让它在前台运行时保持运行,但设备已锁定。)

这可能吗?

最佳答案

我会说不,这是不可能的。原因如下:

docs阅读:

Pressing the Sleep/Wake button is another type of interruption that causes your app to be deactivated temporarily. When the user presses this button, the system disables touch events, moves the app to the background but sets the value of the app’s applicationState property to UIApplicationStateInactive (as opposed to UIApplicationStateBackground), and finally locks the screen.

在上面的文档中需要注意的一点是,在“发生中断时该怎么办”的更下方,Apple 建议您停止执行某些任务。

In response to this change, your app should do the following in its applicationWillResignActive: method:

  • Stop timers and other periodic tasks.
  • Stop any running metadata queries.
  • Do not initiate any new tasks.
  • Pause movie playback (except when playing back over AirPlay).
  • Enter into a pause state if your app is a game.
  • Throttle back OpenGL ES frame rates.
  • Suspend any dispatch queues or operation queues executing non-critical code. (You can continue processing network requests and other time-sensitive background tasks while inactive.)

这告诉我 Apple 不希望或期望您的应用程序在此状态下做任何事情,除了准备完全后台运行。

在相关说明中,这里有一个线程显示如何确定您是否按下了 sleep /唤醒按钮:

Is it possible to distinguish between locking the device and sending an app to background?

关于ios - 在 iOS 设备锁定时保持应用程序运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15305314/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com