如何像在Appstore中一样在ipad中查看

时间:2014-08-10 11:07:54

标签: ios ipad cocoa-touch user-interface

我希望在我的应用程序中显示一个视图,就像app store显示应用程序一样。

我的意思是页面中间的视图,小于iPad的实际尺寸,其余视图变暗。

就像这样:

enter image description here

我应该使用莫代尔还是什么?

感谢。

1 个答案:

答案 0 :(得分:3)

来自代码:

myViewController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:myViewController animated:YES completion:nil];

如果您使用故事板,您还可以使用FormSheet样式设置模态segue。