- The app starts on ViewContoller
- I push TutoViewContoller
- On some action, I pop TutoViewContoller
I would like to call a method of ViewContoller just after popping TutoViewController. How can I do that ?
I would like to call a method of ViewContoller just after popping TutoViewController. How can I do that ?
You can implement viewWillAppear of ViewController. If you really need to distinguish between TutoViewController and other viewcontroller you have many options to call before you pop it: delegate pattern, passing reference of ViewController to TutoViewController etc.