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?
NO.
viewWillAppear
is a template method, the OS will call it for you, you should never call it manually by your self.Before the view would disappear, calling
viewWillAppear
is being called twice in aUIViewController
's lifecycle would break the hierarchy, it could result to some very strange behaviour.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 theUIApplicationDidBecomeActiveNotification
.