那么在我的应用程序中,我有一个带有表格视图的导航控制器,当按下按钮时,一个选项卡控制器会打开。在其第一个选项卡中,我希望设置导航栏的标题。
这是我的故事板的图像,只是为了确保我们彼此不了解。
这是我应该工作的代码。我在尝试打开单个视图而不是选项卡控制器时使用了此代码,并且它工作正常。所以我想我必须改变一些东西。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
SkiCenter *myDetViewCont = [[SkiCenter alloc] initWithNibName:@"SkiCenter" bundle:[NSBundle mainBundle]];
myDetViewCont.ski_center = [centers objectAtIndex:indexPath.row];
UIStoryboard * storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
[[self navigationController] pushViewController:[storyBoard instantiateViewControllerWithIdentifier:@"SkiCenterIds"] animated:YES];
//[self.navigationController pushViewController:myDetViewCont animated:YES]; // "Pushing the controller on the screen"
[myDetViewCont release]; // releasing controller from the memory
myDetViewCont = nil;
}
Skicenter
我的第一个选项卡的类名称在哪里,并且SkiCenterIds
是我的选项卡控制器在情节提要中的标识符。
Skicenter
.m 中的代码是:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
self.navigationItem.title = ski_center;
}
但我没有看到任何标题。那么我做错了什么?我也试过这个:
[self.navigationController setTitle:@"Live"];
或者
self.title=ski_center;
ski_center 具有价值,因为它在 NSLog 中正常打印出来。