我从UINavigationController
继承,现在我想在ViewDidLoad
设置一个按钮和我的标题。
- (void)viewDidLoad
{
[super viewDidLoad];
self.toolbar.barStyle = UIBarStyleBlackOpaque;
self.navigationBar.barStyle = UIBarStyleBlackOpaque;
[self.navigationItem setTitle:@"TEST"];
[self setToolbarHidden:YES];
}
但我不行,我认为这是我想念的。
答案 0 :(得分:1)
用于设置UINavigationBar的标题
使用
self.title = @"TESTING";
导航栏上的和BarButton
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showActionsheet)] autorelease];