Skip to content

Instantly share code, notes, and snippets.

@mactive
Created December 21, 2012 04:57
Show Gist options
  • Save mactive/4350702 to your computer and use it in GitHub Desktop.
Save mactive/4350702 to your computer and use it in GitHub Desktop.
UINavigationController 默认返回按钮时候 做一些操作
- (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.
[self setEditMode];
}
[super viewWillDisappear:animated];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment