Normally,tap back button would take me to previous view controller, but I want to go to some other view controller when I tap back button .so this is what I do:
- (void)viewWillDisappear:(BOOL)animated
{
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:anyPreviousIndex] animated:YES];
[super viewWillDisappear:animated];
}
But it wouldn't work. Someone got any idea about it? I appreciate for any suggestion!