iOS NSNotificationCenter 移除通知带来的crash
Posted 兜兜有糖的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS NSNotificationCenter 移除通知带来的crash相关的知识,希望对你有一定的参考价值。
-
Where to remove observer for NSNotification?
在dealloc方法中移除通知观察者带来crash
NSNotificationCenter中的通知消息已经发出,而观察者对象子线程释放,也就是抛送通知消息的线程和观察者对象子线程释放的线程不一致时,存在crash风险,原因是NSNotificationCenter不是线程安全的。
解决办法:尽早移除通知 或者保证释放和抛送通知在同一个线程。
以上是关于iOS NSNotificationCenter 移除通知带来的crash的主要内容,如果未能解决你的问题,请参考以下文章
iOS NSNotificationCenter 移除通知带来的crash
IOS学习之NSNotificationCenter消息机制
iOS - 使用 NSNotificationCenter 的生命周期
iOS版本之间的UIKeyboardWillShowNotification、UIKeyboardWillHideNotification和NSNotificationCenter问题