美文网首页
监测app从后台到前台,从前台到后台

监测app从后台到前台,从前台到后台

作者: 鄂北 | 来源:发表于2019-12-27 11:29 被阅读0次
    // app从后台进入前台都会调用这个方法
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationBecomeActive) name:UIApplicationWillEnterForegroundNotification object:nil];
    
    // 添加检测app进入后台的观察者
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationEnterBackground) name: UIApplicationDidEnterBackgroundNotification object:nil];

相关文章

网友评论

      本文标题:监测app从后台到前台,从前台到后台

      本文链接:https://www.haomeiwen.com/subject/cezroctx.html