首页 > 移动平台 > 详细

iOS 在viewController中监听Home键触发以及重新进入界面的方法

时间:2016-01-25 16:47:05      阅读:221      评论:0      收藏:0      [点我收藏+]

 

第一步:
创建2个NSNotificationCenter监听
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillResignActive:)
name:UIApplicationWillResignActiveNotification object:nil]; //监听是否触发home键挂起程序.

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidBecomeActive:)
name:UIApplicationDidBecomeActiveNotification object:nil]; //监听是否重新进入程序程序.

 


第二步:
实现2个NSNotificationCenter所触发的事件方法
- (void)applicationWillResignActive:(NSNotification *)notification

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

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

 



注: 在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.
*/
}

iOS 在viewController中监听Home键触发以及重新进入界面的方法

原文:http://www.cnblogs.com/narisong/p/5157413.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!