Reputation: 1620
I have a main page which when clicked takes me to another page through navigation controller.I do some operations in then press the main page navigation bar which takes me back to the main page but the problem is the main page doesn't get refreshed.No function are called not even Viewdidload.Is there a way to reload the view when i press the back button and refreshes the main page?
Upvotes: 3
Views: 3345
Reputation: 2897
You can refresh your content in ViewDidAppear method, this method is being executed each time when view will appear on visible window.
Upvotes: 8