开发者社区> 问答> 正文

iOS 怎么在程序关闭的时候移除所有本地通知

如题 iOS怎么在程序关闭的时候移除所有本地通知

展开
收起
爵霸 2016-03-06 10:13:41 2513 0
4 条回答
写回答
取消 提交回答
  • 移动开发工程师,现在在研究混合开发技术。

    除了其他人的答案:

    - (void)applicationWillTerminate:(UIApplication *)application {
       // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }

    还可以监听通知:

           [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(willTerminate:) name:UIApplicationWillTerminateNotification object:nil];
    
    2019-07-17 18:54:08
    赞同 展开评论 打赏
  • APPdelegate 中有代理方法,applicationWillTerminate:
    这里面去移除监听

    2019-07-17 18:54:08
    赞同 展开评论 打赏
  • iOS程序猿
    - (void)applicationWillTerminate:(UIApplication *)application {
        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }
    
    2019-07-17 18:54:08
    赞同 展开评论 打赏
  • 在appdelegate的析构中移除

    2019-07-17 18:54:08
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
手淘iOS性能优化探索 立即下载
From Java/Android to Swift iOS 立即下载
深入剖析iOS性能优化 立即下载