Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 2, 2015 12:24
Show Gist options
  • Save MaximAlien/141987cc0b6e7aea8ac2 to your computer and use it in GitHub Desktop.
Save MaximAlien/141987cc0b6e7aea8ac2 to your computer and use it in GitHub Desktop.
[iOS] Set right navigation bar item button
- (void)viewDidLoad
{
[super viewDidLoad];
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:@selector(done)];
[self.navigationItem setRightBarButtonItem:doneButton];
}
- (void)done
{
[self dismissViewControllerAnimated:YES completion:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment