Skip to content

Instantly share code, notes, and snippets.

@yoterpa
Created May 13, 2015 06:39
Show Gist options
  • Save yoterpa/669ba3f170169abc3102 to your computer and use it in GitHub Desktop.
Save yoterpa/669ba3f170169abc3102 to your computer and use it in GitHub Desktop.
add toolbar and center toolbar buttons from code
UIBarButtonItem *flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
UIBarButtonItem *item1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:@selector(item1Action:)];
UIBarButtonItem *item2 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:@selector(item2Action:)];
NSArray *toolbarItems = [NSArray arrayWithObjects:item1, flexibleSpace, item2];
[toolBar setItems:toolbarItems animated:NO];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment