在控制器中监听是否点击Home键以及重新进入界面的方法

监听是否触发home键挂起程序
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:) name:UIApplicationWillResignActiveNotification object:nil];

- (void)applicationWillResignActive:(NSNotification *)notification {  
    printf("触发home按下");  
}  
监听是否重新进入程序程序
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];

- (void)applicationDidBecomeActive:(NSNotification *)notification {  
    printf("重新进来后响应");  
} 
在home键触发后,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.  
     */  
}  
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。