如何更改uipopoverpresentation控制器的内容大小?
问题描述:
我试图加载视图控制器使用popoverpresentation controller.But大小始终保持不变。如何改变它?如何更改uipopoverpresentation控制器的内容大小?
答
尝试添加该方法
-(UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller
{
return UIModalPresentationNone;
}
感谢help.it工作 – Arun