在我的代码中,我有大约200多个NSNotification
。
[[NSNotificationCenter defaultCenter] addObserver....];
[[NSNotificationCenter defaultCenter] postNotificationName...];
如果我经常注册和点击通知,这会对我的应用程序性能产生影响吗?
答案 0 :(得分:2)
这取决于您在代码中如何处理NSNotificationCenter
。如果您纯粹处理NSNotification
,那么它的效果就会被称为twice or more times..
NSNotification
的最佳方法是添加到viewWillAppear
并在viewWillDisappear
上删除。
答案 1 :(得分:0)