无法在UINavigationController中设置标题或按钮

时间:2013-04-11 07:56:22

标签: objective-c cocoa-touch

我从UINavigationController继承,现在我想在ViewDidLoad设置一个按钮和我的标题。

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.toolbar.barStyle = UIBarStyleBlackOpaque;
    self.navigationBar.barStyle = UIBarStyleBlackOpaque;

    [self.navigationItem setTitle:@"TEST"];

    [self setToolbarHidden:YES];
}

但我不行,我认为这是我想念的。

1 个答案:

答案 0 :(得分:1)

用于设置UINavigationBar的标题

使用

self.title = @"TESTING";
导航栏上的

和BarButton

self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showActionsheet)] autorelease];