There are two methods in your app delegate where you can pass down information to your view controller that is performing the animation (void)applicationWillResignActive:(UIApplication *)application { // Make note of whether or not the animation is running. // Using NSUserDefaults is probably the simplest } - (void)applicationDidBecomeActive:(UIApplication *)application { // Check your user default setting to see if the animation // was running when the app resigned active and then restart it } Of course this means you'll need a reference to your view controller that is performing the animation in your app delegate, or you could use notifications to pass the notification along. Anyhow, the bottom line is you'll have to watch for the app becoming active again and restart the animation.
There are two methods in your app delegate where you can pass down information to your view controller that is performing the animation. - (void)applicationWillResignActive:(UIApplication *)application { // Make note of whether or not the animation is running. // Using NSUserDefaults is probably the simplest } - (void)applicationDidBecomeActive:(UIApplication *)application { // Check your user default setting to see if the animation // was running when the app resigned active and then restart it } Of course this means you'll need a reference to your view controller that is performing the animation in your app delegate, or you could use notifications to pass the notification along.
Anyhow, the bottom line is you'll have to watch for the app becoming active again and restart the animation.
Thanks. This worked but in the end we just set UIApplicationExitsOnSuspend to true since the user would need to resync with the server upon resuming anyway. – Chase Oct 22 '10 at 2:10 Yeah.
I'm finding more and more that exiting is often a better solution. – Matt Long Oct 23 '10 at 20:51.
There are two methods in your app delegate where you can pass down information to your view controller that is performing the animation. Of course this means you'll need a reference to your view controller that is performing the animation in your app delegate, or you could use notifications to pass the notification along. Anyhow, the bottom line is you'll have to watch for the app becoming active again and restart the animation.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.