[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillTerminate:)
name:UIApplicationWillTerminateNotification object:nil]; //監(jiān)聽是否觸發(fā)home鍵掛起程序.
實現(xiàn)方法
- (void)applicationWillTerminate:(NSNotification *)notification
{
NSLog(@"按理說是觸發(fā)home按下\n");
}