我是iOS新手,我想在我的视图控制器上添加一个导航栏,左侧有2个按钮,右侧订阅。我不知道该怎么做..直到现在我刚刚从界面生成器中添加了一个导航栏,在 .h 文件中为它创建了一个(强)参考并进行了以下编码。
navBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 20, 1026, 50)];
[navBar setTintColor:[UIColor clearColor]];
[navBar setBackgroundColor:[UIColor redColor]];
[navBar setDelegate:self];
[self.view addSubview:navBar];
UIBarButtonItem *bi1 = [[UIBarButtonItem alloc] initWithTitle:@"subscribe" style:UIBarButtonItemStyleBordered target:self action:@selector(editBotton)];
bi1.style = UIBarButtonItemStyleBordered;
bi1.tintColor =[UIColor colorWithWhite:0.305f alpha:0.0f];
self.navigationItem.rightBarButtonItem = bi1;
但什么都没有发生..请帮忙