PresentViewController 与 ModalPresentationStyle “UIModalPresentationFormSheet” IOS 8

Posted

技术标签:

【中文标题】PresentViewController 与 ModalPresentationStyle “UIModalPresentationFormSheet” IOS 8【英文标题】:PresentViewController With ModalPresentationStyle "UIModalPresentationFormSheet" IOS 8 【发布时间】:2015-02-26 10:21:36 【问题描述】:

我无法在 ios 8 中使用 ModalPresentationStyle UIModalPresentationFormSheet 将框架设置为 PesentViewController。相同的代码在 IOS 7 中完美运行。对于所有其他 ModalPresentationStyle,我可以设置框架。我正在做从 IOS 7 到 IOS 8 的迁移工作。如果是 IOS 8 错误,我需要参考来生成。

FirstViewController *saleNotApprovedController = [[FirstViewController alloc]init];

saleNotApprovedController.modalPresentationStyle = UIModalPresentationFormSheet;


[self presentViewController:saleNotApprovedController animated:YES completion:^

      saleNotApprovedController.view.superview.frame = CGRectMake(100, 200, 500, 500);


];

我尝试在 viewWillLayoutSubviews 中为 PesentViewController 设置框架。此代码在加载页面时有效,但是当我们将方向 PesentViewController 更改为自动居中时。

【问题讨论】:

【参考方案1】:

请使用preferredContentSize 设置视图的框架。

【讨论】:

以上是关于PresentViewController 与 ModalPresentationStyle “UIModalPresentationFormSheet” IOS 8的主要内容,如果未能解决你的问题,请参考以下文章

透明 ViewController 可与 presentViewController 一起使用,但不能与 pushViewController 一起使用

PresentViewController 与 ModalPresentationStyle “UIModalPresentationFormSheet” IOS 8

来自xib中自定义TableCell的PresentViewController

将 presentViewController 与 UITabbarController 一起使用时如何传递数据

presentViewController 的动画属性

容器视图中的presentViewController