Skip to content

Instantly share code, notes, and snippets.

@benjaminsnorris
Created November 14, 2014 18:13
Show Gist options
  • Save benjaminsnorris/9f0a5e39ef17ec340cf4 to your computer and use it in GitHub Desktop.
Save benjaminsnorris/9f0a5e39ef17ec340cf4 to your computer and use it in GitHub Desktop.
UINavigationController Toolbar
self.navigationController.toolbarHidden = NO;
UIBarButtonItem *editingButton = self.editButtonItem;
UIBarButtonItem *spaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
[self setToolbarItems:@[editingButton,spaceItem]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment