Reputation: 27265
If my setup is:
View Controller A => View Controller B
Were I to hit the back button on View Controller B
Is there a function that gets called on View Controller A
Upvotes: 0
Views: 29
Reputation: 9589
You can use this
-(IBAction)gotopreviousviewControllerButtonAction:(id)sender
{
[self.navigationController popViewControllerAnimated:YES];
}
Upvotes: 0