UIView的presentModalViewController

时间:2012-10-13 10:55:26

标签: ipad presentmodalviewcontroller

我的类是UIView的子类,因为我想画一些东西。

是否可以在此Context中使用ModalViewController?

我试过了:

DrawViewController *dc = [[DrawViewController alloc]init];

[dc setModalTransitionStyle:UIModalTransitionStylePartialCurl];

 [self presentModalViewController:dc animated:YES];

但它会引发错误......

1 个答案:

答案 0 :(得分:0)

不,只有UIViewControllers可以呈现模态视图控制器,而不是UIViews。