Skip to content

Instantly share code, notes, and snippets.

@mluton
Created November 19, 2012 20:17
Show Gist options
  • Select an option

  • Save mluton/4113613 to your computer and use it in GitHub Desktop.

Select an option

Save mluton/4113613 to your computer and use it in GitHub Desktop.
Gear Bar Button Item with Unicode
self.cogBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"\u2699" style:UIBarButtonItemStyleBordered target:self action:@selector(cogButtonPressed)];
[self.cogBarButtonItem setTitleTextAttributes:@{UITextAttributeFont : [UIFont fontWithName:@"Helvetica" size:24.0]} forState:UIControlStateNormal];
self.navigationItem.rightBarButtonItem = self.cogBarButtonItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment