1

我目前正在编写一个主要基于 UITableViewControllers 的 iOS-APP。层次结构如下:

AppDelegate -> UINavigationController -> UITableViewController [A] -(didSelectRow: presentModalVC)-> UITabBarController -(包含多个)-> UINavigationController -> UITableViewController [B]

现在,当我尝试在 viewDidLoad 方法中的 UITableViewController [B] 中添加一个 navigationItem 时,如下所示:

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCompose target:self action:@selector(composeTweet:)];

导航项不显示。

4

1 回答 1

0

尝试self.navigationController.navigationItem.rightBarButtonItem

另外,尝试 NSLogging UINavigationController 以查看它是否为 nil。

于 2012-08-26T14:14:30.423 回答