navigationItem没有显示

时间:2012-08-26 14:04:08

标签: ios viewdidload rightbarbuttonitem navigationitem

我目前正在编写一个基于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:)];

navigationItem不显示。

1 个答案:

答案 0 :(得分:0)

尝试self.navigationController.navigationItem.rightBarButtonItem

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