Skip to content

Instantly share code, notes, and snippets.

@cwagdev
Last active December 14, 2015 14:48
Show Gist options
  • Save cwagdev/5103091 to your computer and use it in GitHub Desktop.
Save cwagdev/5103091 to your computer and use it in GitHub Desktop.
Detect UINavigation back button press
- (void)viewWillDisappear:(BOOL)animated {
if ([self.navigationController.viewControllers indexOfObject:self]==NSNotFound) {
// back button was pressed. We know this is true because self is no longer
// in the navigation stack.
}
[super viewWillDisappear:animated];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment