使用Storyboard时,如果使用Popover,请更改大小

时间:2014-08-29 12:52:04

标签: ios swift uipopovercontroller

我想在Interface Builder中将其用作segue时更改为Popover的大小。

我已经将ViewController的大小设置为显式值,但是popover仍然是standard size

Specific size

我发现了这个:

Popover size with UINavigationController in Storyboard

但这不适合我。这是故事板编辑器无法实现的吗?否则我需要在BarButtonItem上手动调用它。

1 个答案:

答案 0 :(得分:0)

如果您的应用在iOS版本上运行< 7,使用 contentSizeForViewInPopover

// Inside your view controller
- (CGSize)contentSizeForViewInPopover
{
    return CGSizeMake(450, 250);
}