ios 监听home键

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
name:UIApplicationWillResignActiveNotification object:nil]; //监听是否触发home键挂起程序.
    
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
name:UIApplicationDidBecomeActiveNotification object:nil]; //监听是否重新进入程序程序.


- (void)applicationWillResignActive:(NSNotification *)notification

{
    printf("按理说是触发home按下\n");
}

- (void)applicationDidBecomeActive:(NSNotification *)notification
{
    printf("按理说是重新进来后响应\n");
}

  

 

appDelegate中监听

 

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    /*
     Use this method to release shared resources, save user data, invalidate timers, 

     and store enough application state information to restore your application to its current state in case it is terminated later.
     If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
     */
}

  

posted @ 2014-01-21 14:13  暖流  阅读(533)  评论(0编辑  收藏  举报