如何在 iOS 中启动后台任务?

发布于 2024-12-06 23:50:56 字数 133 浏览 0 评论 0原文

我想做的是当用户执行特定操作(按下按钮)时让应用程序在后台运行。

在黑莓上,有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流绪微梦 2024-12-13 23:50:56

如果您的应用程序已请求后台活动(通过应用程序的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文