Skip to content

Instantly share code, notes, and snippets.

@ttsubono
Created November 12, 2012 05:46
Show Gist options
  • Save ttsubono/4057699 to your computer and use it in GitHub Desktop.
Save ttsubono/4057699 to your computer and use it in GitHub Desktop.
NavigationBarに閉じるボタンを置く
UIBarButtonItem *closeButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"閉じる"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(close:)];
self.navigationItem.leftBarButtonItem = closeButtonItem;
[closeButtonItem release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment