1

UIModalPresentationPageSheet在 iOS8 中不起作用。

MyViewController *myViewController=[[MyViewController alloc] init];
myViewController.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentViewController:myViewController animated:YES completion:nil];

此代码在 iOS6 和 iOS7 中运行良好。但在 iOS8 中,它只是提供全屏视图,就像UIModalPresentationFullScreen.

如何UIModalPresentationPageSheet在 iOS8 中拥有类似 iOS7 的视图?提前致谢。

4

1 回答 1

0

看起来像一个早期的测试版错误。确保在https://bugreport.apple.com上向 Apple 提交错误报告。

于 2014-07-04T15:18:38.677 回答