Navigate Back to previous view controller
问题 I have a UIView->UICollectionView->UICollectionViewCell . I am trying to navigate back programatically but none of these works. The code did called. I am using StoryBoard. - (void) goBack:(NSNotification *) notification { // [self.navigationController popViewControllerAnimated:YES]; // [self dismissViewControllerAnimated:YES completion:nil]; [self.navigationController popToRootViewControllerAnimated:YES]; } 回答1: You need to use: [self.navigationController popToRootViewControllerAnimated:YES];