UIModalPresentationPageSheet
在 iOS8 中不起作用。
MyViewController *myViewController=[[MyViewController alloc] init];
myViewController.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentViewController:myViewController animated:YES completion:nil];
此代码在 iOS6 和 iOS7 中运行良好。但在 iOS8 中,它只是提供全屏视图,就像UIModalPresentationFullScreen
.
如何UIModalPresentationPageSheet
在 iOS8 中拥有类似 iOS7 的视图?提前致谢。