如何在 iOS 中启动后台任务?
我想做的是当用户执行特定操作(按下按钮)时让应用程序在后台运行。
在黑莓上,有一个名为 application.requestbackgtound();
的方法,
iOS 中是否有类似的方法?
What I am trying to do is to let application run in the background when a user takes a specific action (pushes a button).
On blackberry, there is a method called application.requestbackgtound();
Is there something similar in iOS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序已请求后台活动(通过应用程序的 info.plist 中的音频、VoIP 或位置的 UIBackgroundModes 键),或在有限的时间内请求额外的后台时间(通过调用 beginBackgroundTaskWithExpirationHandler:),则启动另一个应用程序(例如如 Safari)通过 openURL:会将您的应用程序置于后台。
If your app has requested background activity (via a UIBackgroundModes key for audio, voip, or location in the app's info.plist), or has requested extra background time for a limited period (via calling beginBackgroundTaskWithExpirationHandler:), then launching another app (such as Safari) via openURL: will put your app in the background.