Modal View Controller Won't Start in Landscape Mode

后端 未结 7 1425
死守一世寂寞
死守一世寂寞 2020-12-10 17:10

I have a navigation based app that has a detail view (UIWebView) with action buttons across the bottom in a UIToolbar. I want to add \'notes\' when the \'notes\' button is

7条回答
  •  误落风尘
    2020-12-10 18:00

    You don't need a new Navigation Controller.

    - (IBAction)addNotes:(id)sender {
    
     NotesViewController *notesViewController;
    
     // create the view controller and set it as the root view of a new navigation
     // controller
    
     notesViewController = [[NotesViewController alloc] initWithPrimaryKey:self.record.primaryKey];
    
     [self.navigationController pushViewController: notesViewController animated: YES];
     [notesViewController release];
    }
    

提交回复
热议问题