UINavigationController title is not displayed?

ios, objective-c, uinavigationcontroller

Solution

You should set the title in the view controller you add to your navigation controller.

i.e. in the add view controller

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"My Title";
}

or access the array of your viewcontrollers directly

        AddFriendViewController *addFriendsView = [[AddFriendViewController alloc] initWithNibName:@"AddFriendViewController" bundle:nil];
        [self.navigationController pushViewController:addFriendsView animated:YES];
        [[self.navigationController.viewControllers objectAtIndex:0] setTitle:@"myTitle"];
        [addFriendsView release];

Problem

I have normal UIViewController ,inwhich I added UINavigationControllerDelegate,i added as following in willappear?but it did not work? ``` [self.navigationController setNavigationBarHidden:NO animated:YES]; self.navigationController.navigationItem.title = @"hai"; ```

Original source