如何更改uipopoverpresentation控制器的内容大小?

时间:2016-02-26 07:29:48

标签: ios objective-c

我试图使用popoverpresentation controller加载视图控制器。但是大小始终保持不变。怎么改变它?

1 个答案:

答案 0 :(得分:0)

尝试添加此方法

-(UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller
{
   return UIModalPresentationNone;
}