PresentViewController 与 ModalPresentationStyle "UIModalPresentationFormSheet" IOS 8

PresentViewController With ModalPresentationStyle "UIModalPresentationFormSheet" IOS 8

我无法在 IOS 中使用 ModalPresentationStyle UIModalPresentationFormSheet 将框架设置为 PesentViewController 8. 相同的代码在 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 会自动对齐到中心。

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