I am currently writing an iOS-APP based on mostly UITableViewControllers. The hierarchy is the following:
AppDelegate -> UINavigationController -> UITableViewController [A] -(didSelectRow: presentModalVC)-> UITabBarController -(contains multiple)-> UINavigationController -> UITableViewController [B]
Now when I try to add a navigationItem in UITableViewController [B] in the viewDidLoad method like so:
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCompose target:self action:@selector(composeTweet:)];
the navigationItem does not show.