With the new iphones there are multitasking. This means that you don’t have to re-start the app. I want to know what code gets called when you tap on the app to bring it up, but not when you start it for the first time.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Implement
-applicationWillEnterForeground:in your application delegate, or observe theUIApplicationWillEnterForegroundNotificationnotification in another object.These will be immediately followed by
-applicationDidBecomeActive:andUIApplicationDidBecomeActiveNotification, respectively.