0

我收到了 Xcode 的警告:

Instance method '-presentModalViewController:animated:completion:' not found (return type defaults to 'id')

这是代码:

    NewsWebViewController *sampleView = [[[NewsWebViewController alloc] init] autorelease];
    [self presentModalViewController:sampleView animated:YES completion:nil];

}

在与您联系之前,我尝试了您的不同解决方案,请体谅我的歉意,我是法国人,我使用谷歌翻译进行翻译。

在你提前感谢。

4

2 回答 2

1

该方法称为presentViewController:animated:completion:.

此选择器中没有Modal

于 2013-09-13T16:58:49.530 回答
1

请查看 的参考文档UIViewController。该方法的名称是:

presentViewController:animated:completion:

有一个不推荐使用的方法名为:

presentModalViewController:animated:
于 2013-09-13T16:59:17.890 回答