Reputation: 38152
When application comes to foreground from background then appixationDidBecomeActive gets called. Now, I want to refresh the page from which the home button was tapped. In which method I can write the refresh code. viewWillAppear is not getting called.
Upvotes: 1
Views: 1607
Reputation: 2220
You can use custom notification like : NSNotificationCenter. And on call of this you can refresh your view.
Upvotes: 0
Reputation: 2119
In this case viewWillAppear
never gets called, you can fire notification(s) whenever -(void)applicationWillEnterForeground:(UIApplication *)application
gets called and use it on the view you want.
Upvotes: 5