iOS检测应用程序何时从后台关闭?

时间:2013-11-01 17:39:21

标签: ios iphone objective-c

有没有办法检测用户何时点击主页按钮以在后台关闭应用程序?

1 个答案:

答案 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