我正在接受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];
}
在您联系之前,我尝试了不同的解决方案, 请考虑我的道歉,我是法国人,我用谷歌翻译翻译。
在你感谢前进。
答案 0 :(得分:1)
该方法称为presentViewController:animated:completion:
。
此选择器中没有Modal
。
答案 1 :(得分:1)
请查看UIViewController
的参考文档。方法的名称是:
presentViewController:animated:completion:
有一个名为:
的弃用方法presentModalViewController:animated: