Search code examples
iphoneobjective-ccocoa-touchuiviewcontroller

How can I set the titlebar title for a modal view controller?


self.title = @"My View";

Doesn't work when my view is presented modally.


Solution

  • You must write following code for presenting modalView Controller..

    yourModelController =[[Yourmodelcontroller alloc]init];
    
    UINavigationController *controller = [[UINavigationController alloc] initWithRootViewController: yourModelController];
    
    [[self navigationController] presentModalViewController:controller animated:YES];
    [controller release];
    

    Then in the viewDidLoad-method you need to write:

    self.title =@"My View";