当前位置:首页 > 数据库 > 正文

iOS开发之监听应用进入前台后台

2020-02-12 数据库

//后台进前台通知 UIApplicationDidBecomeActiveNotification
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didBecomeActive) name:UIApplicationDidBecomeActiveNotification object:nil];

//进入后台UIApplicationDidEnterBackgroundNotification
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];

我们

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/SQL/15045.html