iPhone 应用程序应该关闭,而不是转到后台

发布于 2024-09-28 16:34:16 字数 109 浏览 0 评论 0原文

我有一个应用程序,其中当用户点击 iPhone 的中央按钮时,该应用程序将发送到后台,但我希望将其关闭。

我可以处理事件并关闭它,但可能有一些配置设置拒绝在后台运行?

谢谢

I have an application wherein when the user taps iPhone's central button, the application is sent to background, but I want it to be closed.

I can hand event and close it, but may be there is some configuration setting to deny running in the background?

Thank you

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

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

发布评论

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

评论(1

知你几分 2024-10-05 16:34:16

如果您希望应用在用户按下主页按钮时终止,请在应用的 Info.plist 文件中将 UIApplicationExitsOnSuspend 的值设置为 YES 。如果您这样做,当用户点击主页按钮时,您的应用程序委托的 applicationWillTerminate: 方法将被调用,然后您的应用程序将终止。

If you want your app to terminate when the user presses the home button, set the value of UIApplicationExitsOnSuspend to YES in your app's Info.plist file. If you do this, when the user taps the home button the applicationWillTerminate: method of your app delegate will be called and then your application will terminate.

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