iPhone 应用程序应该关闭,而不是转到后台
我有一个应用程序,其中当用户点击 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望应用在用户按下主页按钮时终止,请在应用的
Info.plist
文件中将UIApplicationExitsOnSuspend
的值设置为YES
。如果您这样做,当用户点击主页按钮时,您的应用程序委托的applicationWillTerminate:
方法将被调用,然后您的应用程序将终止。If you want your app to terminate when the user presses the home button, set the value of
UIApplicationExitsOnSuspend
toYES
in your app'sInfo.plist
file. If you do this, when the user taps the home button theapplicationWillTerminate:
method of your app delegate will be called and then your application will terminate.