Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an animation in viewDidLoad that runs the first time the app is launched. if you exit the app, then launch it again the animation doesn't play.

how would I go about making the animation play each and every time the app is opened,

thanks for any help

share|improve this question

4 Answers

up vote 11 down vote accepted

In iOS 4, pressing the home button doesn't terminate the app, it suspends it. When the app is made active again, a UIApplicationDidBecomeActiveNotification is posted. Register for that notification and initiate the animation in your handler.

Edit: Added code below.

Here's one way to do it: Have your view controller become an observer of UIApplicationDidBecomeActiveNotification in its viewWillAppear: method.

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(performAnimation:) name:UIApplicationDidBecomeActiveNotification object:nil];
}

Unregister for the notification in your view controller's viewDidDisappear: method.

- (void)viewDidDisappear:(BOOL)animated {
    [super viewDidDisappear:animated];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIApplicationDidBecomeActiveNotification object:nil];
}

Finally, put your animation code in the selector specified when registering to receive the notification.

- (void)performAnimation:(NSNotification *)aNotification {
    // Animation code.
}
share|improve this answer
that worked for me. thanks for the help and a great explanation. – hanumanDev Nov 14 '10 at 19:03
I'm glad to help. – James Huddleston Nov 14 '10 at 19:07

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html

Put the animation in a method like

applicationDidBecomeActive:

of UIApplicationDelegate

share|improve this answer

Very likely your app isn't quitting and reloading. By default, on iOS 4 apps continue to run when the user 'exits' the app, and continue where they left off when 'restarted'.

Take a look at applicationDidBecomeActive in your app delegate. You could kick off your animation from there when the app is deactivated.

share|improve this answer
1  
James' answer is better than mine... – TomSwift Nov 14 '10 at 1:52

How about set a flag in your application delegate to control this behavior:

Set it to YES when the app enters the foreground or became active (applicationWillEnterForeground:, applicationDidBecomeActive:)

Check if this flag is NO in -viewWillAppear in your view controller:

MyAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
if(!delegate.animationPlayed) {
   //perform animation here...
   delegate.animationPlayed = YES;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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