&tag(Objective-C, UIKit);
- (void)viewDidLoad {
[super viewDidLoad];
///// ナビゲーションバーのボタン
UIBarButtonItem *newButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(newPushed)];
self.navigationItem.rightBarButtonItem = newButton;
[newButton release];
}