? ? //殺掉進(jìn)程
? ? [[NSNotificationCenter defaultCenter] addObserver:self
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? selector:@selector(onTerminate)
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? name:UIApplicationWillTerminateNotification
?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? object:nil];
? ? //進(jìn)入后臺(tái)
? ? [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];
-(void)onTerminate {
? ? NSLog(@"殺掉進(jìn)程");
}
/// 進(jìn)入后臺(tái)
- (void)applicationWillEnterBackground {
? ? NSLog(@"1進(jìn)入后臺(tái)");
}