I am trying to create a global call for all child views of a container view when the view appears.
Situation:
I know I can add the method to open the passcode modal to the child controllers directly, but because there are so many and they may change in the app's lifetime, I was hoping to make a global call directly from the container view.
How can I get the container view to respond to the appearance callback methods (i.e. viewWillAppear, viewDidAppear, etc.)?
Solved it with a notification using 'UIApplicationDidBecomeActiveNotification':
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(applicationDidBecomeActive)
name:UIApplicationDidBecomeActiveNotification object:nil];