Is good to call selector method ViewWillAppear in NSNotificationCenter

164 Views Asked by At

I want to know is it good to call viewWillAppear: method in NSNotificationCenter defaultCenter.

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(viewWillAppear:) name:UIApplicationDidBecomeActiveNotification object:nil];

Or

-(void)setUpInitialization{
// dump code here in ViewWillAppears.
}

Call the method setUpInitialization

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(setUpInitialization) name:UIApplicationDidBecomeActiveNotification object:nil];

If directly call viewWillAppear is a not good way to implement?

1

There are 1 best solutions below

0
On BEST ANSWER

NO.

  1. viewWillAppear is a template method, the OS will call it for you, you should never call it manually by your self.

  2. Before the view would disappear, calling viewWillAppear is being called twice in a UIViewController's lifecycle would break the hierarchy, it could result to some very strange behaviour.

  3. Debugging your own UIViewController subclasses, or any subclasses will be a nightmare.

As you are suggesting, do the second option using setUpInitialization() function, and do everything there, when you receive the UIApplicationDidBecomeActiveNotification.