UIViewController不会响应presentModalViewController

时间:2009-11-26 15:35:58

标签: iphone uiviewcontroller self

我有一个UITableViewController-Class。我已经将UITableViewController类更改为UIVIewController,并在IB new中创建并指定了连接。 除[self presentModalViewController:.....]外,一切正常 编译器说自我不响应“自我”,并且在旋转视图时应用程序崩溃。

感谢您的帮助:)

解决方案:我没有在两个视图中设置“shouldAutorotateToInterfaceOrientation”方法。

1 个答案:

答案 0 :(得分:2)

你确定你正在调用正确的功能吗?这是

[self presentModalViewController:screen animated:YES];

请务必不要忘记animated:参数。事实上,如果你有那个部分,我唯一的建议就是确保你的拼写正确,而且那行代码确实在正确的类中。