用户按下主页按钮时中断方法?

发布于 2024-12-12 17:46:37 字数 65 浏览 0 评论 0原文

当用户按下 iOS 设备上的主页按钮并且应用程序当前正在运行一个方法时会发生什么:该方法会完成运行还是会在中间中断?

What happens when a user pushes the home button on the iOS device and the app is currently running a method: Will the method finish running or will the method be interrupted in the middle?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

王权女流氓 2024-12-19 17:46:39

正如 Maudicus 所写,在应用程序委托上调用 applicationWillResignActive: 以及 applicationDidEnterBackground:。您应该假设当前正在运行的任何方法都将被中断。如果您想确保执行特定操作,则应将其放入上述方法之一。

Like Maudicus wrote, applicationWillResignActive: is called on the application delegate, as well as applicationDidEnterBackground:. You should assume that any method that is currently running will be interrupted. If you want to ensure that a particular operation is performed, you should put it in one of the aforementioned methods.

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