我目前正在编写一个基于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不显示。
答案 0 :(得分:0)
尝试self.navigationController.navigationItem.rightBarButtonItem
另外,尝试NSLogging UINavigationController以查看它是否为零。