标签:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(appHasGoneInForeground:) name:UIApplicationWillEnterForegroundNotification object:nil]; //别忘了删除监听 [[NSNotificationCenter defaultCenter] removeObserver:self];
UIApplicationDidEnterBackgroundNotification //进入后台
UIApplicationWillEnterForegroundNotification //回到程序
标签:
原文地址:http://www.cnblogs.com/pangbin/p/5411959.html