我想在Interface Builder
中将其用作segue时更改为Popover的大小。
我已经将ViewController的大小设置为显式值,但是popover仍然是standard size
我发现了这个:
Popover size with UINavigationController in Storyboard
但这不适合我。这是故事板编辑器无法实现的吗?否则我需要在BarButtonItem上手动调用它。
答案 0 :(得分:0)
如果您的应用在iOS版本上运行< 7,使用 contentSizeForViewInPopover :
// Inside your view controller
- (CGSize)contentSizeForViewInPopover
{
return CGSizeMake(450, 250);
}