2

我不确定我的 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";
4

1 回答 1

1

iOS6 的 UINavigationController 似乎有一些变化。

https://stackoverflow.com/a/13205842/1171003

当我写这样的代码时,根本没有显示标题。

UITabBarController *tb = [[UITabBarController alloc] init];
tb.viewControllers = [NSArray arrayWithObjects:
                       [[ViewController1 alloc] init],
                       [[ViewController2 alloc] init],
                       nil];

UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:tb];

但是,在我添加了这一行之后,它就出现了。

tb.title = @"Title";
于 2012-11-08T00:49:13.287 回答