in my iPhone application I need to check that user has clicked back button in Navigation controller. I think that I should get this in following method:
-(void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
}
I don't want to override back button event. How can I get information that use click back button and navigation stack has changed?
Update Is it possible to know that in viewDidAppear method?