Objective-C: Where to remove observer for NSNotification?

前端 未结 14 1622
北海茫月
北海茫月 2020-11-29 19:37

I have an objective C class. In it, I created a init method and set up a NSNotification in it

//Set up NSNotification
[[NSNotificationCenter defaultCenter] a         


        
14条回答
  •  自闭症患者
    2020-11-29 19:39

    If the observer is added to a view controller, I strongly recommend adding it in viewWillAppear and removing it in viewWillDisappear.

提交回复
热议问题