I have the UIApplicationDelegate protocol in my main AppDelegate.m class, with the applicationDidBecomeActive method defined.

I want to call a method when the application returns from the background, but the method is in another view controller. How can I check which view controller is currently showing in the applicationDidBecomeActive method and then make a call to a method within that controller?

link|improve this question

feedback

1 Answer

up vote 57 down vote accepted

Any class in your application can become an "observer" for different notifications in the application. When you create (or load) your view controller, you'll want to register it as an observer for the UIApplicationDidBecomeActiveNotification and specify which method that you want call when that notification gets sent your your application.

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

Don't forget to clean up after yourself! In dealloc, remember to remove yourself as the observer:

[[NSNotificationCenter defaultCenter] removeObserver:self];

More information about the Notification Center.

link|improve this answer
Excellent. Didn't think of using NSNotificationCenter. Thank you! – Calvin L Sep 4 '10 at 1:33
1  
Just a typo in that line of code (missing 'name'): [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(someMethod:) name:UIApplicationDidBecomeActiveNotification object:nil]; – Johnus Nov 12 '10 at 5:55
@Johnus - thanks for the catch. Updated my response. – Reed Olsen Nov 12 '10 at 21:52
To add to Reed's answer, the method that is called (in this example it's someMethod) needs to accept an NSNotification parameter. So the method signature for someMethod would be -(void)someMethod:(NSNotification *)notification { //Do Something Here } – Aaron Jan 31 '11 at 16:59
@Aaron It can, but it's not a requirement. That's great insight, though. Thanks! – Reed Olsen Jan 31 '11 at 22:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.