ViewController过渡麻烦

时间:2012-11-01 22:03:28

标签: iphone ios xcode uiviewcontroller

这是我目前的代码:

(IBAction)signup:(id)sender {
SignUp *signUp = [[SignUp alloc] init];
signUp.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:signUp animated:YES];

我只是在底线上收到错误。它写道:“没有可见的@interface为'loginView'delcares选择器'presentViewController:动画。'

以下是我不理解的内容...我将loginView作为UIViewController类的子代接口...这是声明presentViewController的地方。为什么告诉我它找不到任何东西,我该如何解决?

提前谢谢你!

1 个答案:

答案 0 :(得分:0)

您确定在presentViewController:animated:中声明了UIViewController吗?在我的文档中,它被列为presentViewController:animated:completion:。如果你没有任何相关的东西,你可以有一个空的完成块。

[self presentViewController:signup animated:YES completion:^(){}];