家伙!我希望我的iOS应用程序在被暂停时显示一些通知,但我不想在应用程序被杀之后这样做。下面的代码根本没有说明,但是当应用程序将要关闭时,会调用该方法。
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
[[UIApplication sharedApplication] cancelAllLocalNotifications];
}