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

Posted kawerd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS开发之监听应用进入前台后台相关的知识,希望对你有一定的参考价值。

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

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

我们

以上是关于iOS开发之监听应用进入前台后台的主要内容,如果未能解决你的问题,请参考以下文章