我目前正在编写一个主要基于 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:)];
导航项不显示。