我正在做一个iPad
应用程序UISplitViewController
。我想modalViewController
在 masterViewController 本身中打开一个。当我以模态方式加载视图控制器时,需要整个屏幕来呈现它。
这是我的代码,在我的masterViewController
.m 中展示新的viewController
模态
- (void)addNewContactButtonPressed:(id)sender {
AddOrEditContact *addContact = [self.storyboard instantiateViewControllerWithIdentifier:@"AddOrEditContact"];
addContact.screenMode = addMode;
UINavigationController *navigationController = [[UINavigationController alloc]initWithRootViewController:addContact];
[self.navigationController presentViewController:navigationController animated:YES completion:nil];
}
我想viewController
在任何帮助中加载一个新的模态masterViewController.
将不胜感激。