标签: ios iphone objective-c
有没有办法检测用户何时点击主页按钮以在后台关闭应用程序?
答案 0 :(得分:4)
此方法可让您的应用知道它即将被终止并完全从内存中清除
- (void)applicationWillTerminate:(UIApplication *)application { // Saves changes in the application's before the application terminates. }
但是当你从主页按钮关闭时,它不会在后台调用。
如需了解更多信息,请查看文档https://developer.apple.com/library/ios/documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIApplicationDelegate/applicationWillTerminate: