I have an app that uses navigationcontroller.
I'm fine pushing new controllers onto the stack and popping them back.
However I cant figure out how to handle a view being reactivated this way.
So for example if I start on screen a. The users presses a button and screen b pushes in. The user interacts with screen b and then I call
[self.navigationController popViewControllerAnimated:YES];
to get me back out to screen a.
However on screen a reappearing I want to perform some logic but I cant figure out how to capture the actual event that popViewController has created.
Any help greatly appreciated.
I'm fine pushing new controllers onto the stack and popping them back.
However I cant figure out how to handle a view being reactivated this way.
So for example if I start on screen a. The users presses a button and screen b pushes in. The user interacts with screen b and then I call
[self.navigationController popViewControllerAnimated:YES];
to get me back out to screen a.
However on screen a reappearing I want to perform some logic but I cant figure out how to capture the actual event that popViewController has created.
Any help greatly appreciated.