我正在尝试使用表格演示文稿在iPad中加载UIViewController。问题是这个新 View 的大小,我将大小值放在IBuilder中,但模态视图采用固定值。

我也试图像这样在prepareForSegue中做到这一点:

HelpViewController *viewController = segue.destinationViewController;
viewController.view.superview.frame = CGRectMake(0, 0, 200, 200);

但是不起作用,有什么帮助吗?谢谢!

最佳答案

对于iOS 8,使用:

self.preferredContentSize = CGSizeMake(width, height);

我把它放在viewDidLoad中。

迅捷3
self.preferredContentSize = CGSize(width: 100, height: 100)

关于ios - 随表格演示文稿加载的Modal View的自定义尺寸,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16518175/

10-12 01:04