When my Iphone-App was already running and I try to go back to it then it cannot refresh or reload the news or tables automatically.
How could i set an automatic refresh on the quickstart of the App?
Thx
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.
To add to the previous answer, you can do this in your app delegate’s
applicationWillBecomeForeground:method, which is called when your app is about to be returned to the foreground.There’s also the
UIApplicationWillEnterForegroundnotification, which you can sign up for to allow any object (like a view controller, for example) to be notified when the app is about to return to the foreground. Either technique should get the desired effect.