I have the following:
header file:
UINavigationBar *navigationBar;
UINavigationItem *navigationItem;
implementation file:
in viewDidLoad method I tried these:
self.navigationBar.topItem.title = @"title text";
and also this:
self.navigationItem.title = @"MyTitle";
[self.navigationBar pushNavigationItem:navigationItem animated:NO];
But no title seems to appear on the black up bar:

Has anyone any idea?Thank you!
EDIT:
