ios app响应background,foreground 事件实现
1 通过AppDelegate 实现
App进入后台事件方法
- (void)applicationDidEnterBackground:(UIApplication *)application
APP进入前台的事件方法
- (void)applicationWillEnterForeground:(UIApplication *)application
2UIViewController类中通过对Background ,Foreground事件的通知的侦听,进行实现
举例
- (void) viewWillAppear:(BOOL)animated{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appWillEnterForegroundNotification) name:UIApplicationWillEnterForegroundNotification object:nil];
}
- (void) appWillEnterForegroundNotification{
NSLog(@"trigger event when will enter foreground.");
}
-(void) viewDidDisappear:(BOOL)animated{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
注意:在UIViewController类中viewDidUnload方法在ios6以后过期失效
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。