您的位置:首页 > 移动开发

app退以后台,进入前台

2016-05-12 10:16 351 查看
// app退到后台

[[NSNotificationCenter
defaultCenter]
addObserver:self
selector:@selector(appDidEnterBackground)
name:UIApplicationWillResignActiveNotification
object:nil];

// app进入前台

[[NSNotificationCenter
defaultCenter]
addObserver:self
selector:@selector(appDidEnterPlayGround)
name:UIApplicationDidBecomeActiveNotification
object:nil];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: