Objective-C: Where to remove observer for NSNotification?

前端 未结 14 1672
北海茫月
北海茫月 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:41

    -(void) dealloc {
          [[NSNotificationCenter defaultCenter] removeObserver:self];
          [super dealloc];
    }
    

提交回复
热议问题