Skip to content

Instantly share code, notes, and snippets.

@pingwinator
Forked from jsai/gist:7158998
Last active August 29, 2015 14:11
Show Gist options
  • Save pingwinator/caedd157f3277563a845 to your computer and use it in GitHub Desktop.
Save pingwinator/caedd157f3277563a845 to your computer and use it in GitHub Desktop.
UISearchBar *searchBar = [[UISearchBar alloc] init];
self.navigationItem.titleView = searchBar;
UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"cancel", @"Cancel")
style:UIBarButtonSystemItemCancel
target:self
action:@selector(cancelButtonClicked)];
self.navigationItem.rightBarButtonItem = cancelButton;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment