在应用程序内启用和禁用多任务处理
目前,我的 iPad 应用程序实现了多任务处理。但是,我想为用户提供禁用多任务处理的选项。鉴于您无法修改设置 UIApplicationExistsOnSuspend
键的 Info.plist 字典,这是否可能?
Currently, my iPad application implements multitasking. However, I would like to offer the user an option to disable multitasking. Is this possible, given the fact that you cannot modify the Info.plist dictionary where the UIApplicationExistsOnSuspend
key is set?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以在应用程序委托中设置一个标志,当委托方法
applicationDidEnterBackground:
中该标志为 TRUE 时,该标志将直接退出您的应用程序,如下所示:Well, you could set a flag in your application delegate that would simply exit your app when the flag is TRUE within the delegate method
applicationDidEnterBackground:
, like this: