如何在 iPhone 4.0 中配置注销

发布于 2024-09-24 20:53:30 字数 253 浏览 2 评论 0原文

如何在 iPhone 4.0 中配置注销,因为它不会调用 applicationWillTerminate< /code>4.0 中的方法。

How to configure log out in iPhone 4.0 as it does not call applicationWillTerminate method in 4.0.

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

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

发布评论

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

评论(1

眼眸 2024-10-01 20:53:30

如果您想支持多任务处理,则应该在应用程序委托中以及 - ( void)applicationWillTerminate:(UIApplication *)application 以支持不支持多任务或 4.0 之前的 iOS 的设备。

但您也可以强制 iOS 使用“旧”行为,即不支持多任务并始终调用 applicationWillTerminate:。为此,您需要编辑 Info.plist 并添加带有布尔值 YES 的 UIApplicationExitsOnSuspend 键。

If you want to support multi-tasking you are supposed to implement the - (void)applicationDidEnterBackground:(UIApplication *)application method in your app delegate for saving state, as well as in - (void)applicationWillTerminate:(UIApplication *)application to support devices that do not have multi-tasking support or pre 4.0 iOS.

But you can also force iOS to use the "old" behavior, that is to not support multi-tasking and always call applicationWillTerminate:. To do that, you need to edit your Info.plist and add the key UIApplicationExitsOnSuspend with a boolean value YES.

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