I come across a strange issue
code :
- (void) viewDidLoad
{
[super viewDidLoad];
self.navigationItem.title = @"Hello title";
}
and there is a navigation bar in the xib file. the navigtion bar is show in the view after loaded. however, "Hello title" does not show in the navigationbar.
so How can I change the navigationbar title ?
thanks a lot!