Why is my NSNotification its observer called multiple times?

后端 未结 5 2107
一个人的身影
一个人的身影 2020-12-15 04:48

Within an App I make use of several viewcontrollers. On one viewcontroller an observer is initialized as follows:

[[NSNotificationCenter defaultCenter] remov         


        
相关标签:
5条回答
  • 2020-12-15 04:56

    It is possible that the class with the observer is, quite appropriately, instantiated multiple times. When you are debugging it will kinda look like the notification is being posted multiple times. But if you inspect self you might see that each time is for a different instance.

    This could easily be the case if your app uses a tab bar and the observer is in a base class of which your view controllers are subclasses.

    0 讨论(0)
  • 2020-12-15 04:59

    Ran into this issue in an application running swift. The application got the notification once when first launched. the notification increases the number of times you go into the background and come back. i.e

    • app launches one - add observer gets gets called once in view will appear or view did load - notification is called once
    • app goes into background and comes back, add observer gets called again in view will appear or view did load. notification gets called twice.
    • the number increases the number of times you go into background and come back.
    • code in view will disappear will make no difference as the view is still in the window stack and has not been removed from it.

    solution: observe application will resign active in your view controller:

      NSNotificationCenter.defaultCenter().addObserver(self, selector: "applicationWillResign:", name: UIApplicationWillResignActiveNotification, object: nil)
    
      func applicationWillResign(notification : NSNotification) {
        NSNotificationCenter.defaultCenter().removeObserver(self)
      }
    

    this will make sure that your view controller will remove the observer for the notification when the view goes into background.

    0 讨论(0)
  • 2020-12-15 05:01

    it is quite possible you are subscribing to the notifications

    [[NSNotificationCenter defaultCenter] postNotificationName:@"myNotification" object:self userInfo:userInfo];
    

    before self gets initialized. And trying to unsubscribe 'self' which isn't really subscribed to, and you will get all global myNotification notifications.

    If your view was hooked up in IB, use -awakeFromNib: as the starting point to register for notifications

    0 讨论(0)
  • 2020-12-15 05:05

    Based on this description, a likely cause is that your viewcontrollers are over-retained and not released when you think they are. This is quite common even with ARC if things are over-retained. So, you think that you have only one instance of a given viewcontroller active, whereas you actually have several live instances, and they all listen to the notifications.

    If I was in this situation, I would put a breakpoint in the viewcontroller’s dealloc method and make sure it is deallocated correctly, if that’s the intended design of your app.

    0 讨论(0)
  • 2020-12-15 05:15

    In which methods did you register the observers?

    Apple recommends that observers should be registered in viewWillAppear: and unregistered in viewWillDissapear:

    Are you sure that you don't register the observer twice?

    0 讨论(0)
提交回复
热议问题