ModalPresentationStyle无法正常工作

时间:2015-03-13 02:50:40

标签: ios xcode uimodalpresentationstyle

我想在视图控制器上呈现一个popOver视图控制器(如popUp屏幕)。

我使用以下代码:

UIViewController *V2 = [[UIViewController alloc] init];  // V2 is the popup
V2.modalPresentationStyle = UIModalPresentationFormSheet;
V2.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
V2.preferredContentSize = CGSizeMake(800, 600); // size of popup view
[self presentViewController:V2 animated:YES completion:nil];

它正常工作,但popOver视图也变暗了。请帮助我。

View the image here

0 个答案:

没有答案