美文网首页
iOS监听杀掉程序、退出后台

iOS监听杀掉程序、退出后台

作者: VickyLanLan | 来源:发表于2022-04-11 11:20 被阅读0次

        //杀掉进程

        [[NSNotificationCenter defaultCenter] addObserver:self

                                                 selector:@selector(onTerminate)

                                                     name:UIApplicationWillTerminateNotification

                                                   object:nil];

        //进入后台

        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillEnterBackground) name:UIApplicationDidEnterBackgroundNotification object:nil];

    -(void)onTerminate {

        NSLog(@"杀掉进程");

    }

    /// 进入后台

    - (void)applicationWillEnterBackground {

        NSLog(@"1进入后台");

    }

    相关文章

      网友评论

          本文标题:iOS监听杀掉程序、退出后台

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