[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
name:UIApplicationWillResignActiveNotification object:nil]; //監(jiān)聽(tīng)是否觸發(fā)home鍵掛起程序.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
name:UIApplicationDidBecomeActiveNotification object:nil]; //監(jiān)聽(tīng)是否重新進(jìn)入程序程序.
- (void)applicationWillResignActive:(NSNotification *)notification
{
printf("按理說(shuō)是觸發(fā)home按下\n");
}
- (void)applicationDidBecomeActive:(NSNotification *)notification
{
printf("按理說(shuō)是重新進(jìn)來(lái)后響應(yīng)\n");
}