我希望在我的应用程序中显示一个视图,就像app store显示应用程序一样。
我的意思是页面中间的视图,小于iPad的实际尺寸,其余视图变暗。
就像这样:
我应该使用莫代尔还是什么?
感谢。
答案 0 :(得分:3)
来自代码:
myViewController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:myViewController animated:YES completion:nil];
如果您使用故事板,您还可以使用FormSheet样式设置模态segue。