Используйте UINavigationControllerDelegate
@interface SettingsViewController : UIViewController <UINavigationControllerDelegate>
в .h файле
затем
self.navigationController.delegate = self;
в .m файле
И вы обнаружите изменение в NavigationControllerс методами
- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated