Skip to content

Instantly share code, notes, and snippets.

@centwave
Created June 11, 2013 15:45
Show Gist options
  • Save centwave/5757981 to your computer and use it in GitHub Desktop.
Save centwave/5757981 to your computer and use it in GitHub Desktop.
Navigation bar button item
/* create a bar button item */
UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"button" style:UIBarButtonItemStylePlain target:self action:@selector(barButtonDidTap:)];
self.navigationItem.rightBarButtonItem = item;
/*
* call back when bar button did tap
*/
- (void)barButtonDidTap:(id)sender
{
//do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment