[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillTerminate) name:UIApplicationWillTerminateNotification object:nil];
/** 程序被杀死 */
-(void)applicationWillTerminate{
//
DLog(@"程序杀死了");
[[NSNotificationCenter defaultCenter] postNotificationName:@"closeHome" object:nil userInfo:nil];
}
网友评论