我不确定我的 UINavigationBar 标题出了什么问题。在尝试了所有可能的事情后,我无法让它工作。出现导航栏但标题不见了!!这是我的简单代码,
self.marketsListViewController = [[MarketsListViewController alloc] initWithNibName:@"MarketsListViewController" bundle:nil];
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:self.marketsListViewController];
nvc.navigationBar.barStyle = UIBarStyleBlack;
[self.marketsListView addSubview:nvc.view];
[self addChildViewController:nvc];
[nvc didMoveToParentViewController:self];
在 MarketsListViewController 的 didViewLoad 中,我尝试了以下所有方法,但都没有成功!!!有人可以帮我理解发生了什么吗?谢谢。
self.title = @"MyTitle";
self.navigationItem.title = @"MyTitle";
self.navigationController.navigationItem.title = @"MyTitle";