presentModelViewController无法正常工作

时间:2010-10-01 11:17:11

标签: objective-c ios4


我的appdelegate类中有navigationController和& 在其中传递一个viewController(RootViewController) 在RootViewController中我使用自定义UItableViewCell 在UITableViewCell类中,我有一个UIButton 点击按钮我想导航到其他页面(sampleViewController)
所以在按钮上单击我使用

-(void)btnClick
{
[self.viewController presentModelViewController:sampleViewController animated:YES];

}

但这不会导航到sampleViewController 在哪里我犯了错误?
请帮助/建议我以上的朋友。

2 个答案:

答案 0 :(得分:1)

可能只是一个简单的错字 - 正确的方法名称是presentModalViewController:动画:(模态,而不是模型)

答案 1 :(得分:0)

您是否已连接按钮的onTouchUp事件?按钮是否被调用?