Modalviewcontroller问题

时间:2011-06-22 14:17:07

标签: iphone view uiviewcontroller modalviewcontroller

当我尝试显示我的modalviewcontroller时,我收到SIGABRT错误。

这是代码:

    LoginPage *loginPage = nil;   
    loginPage = [[LoginPage alloc] initWithNibName:@"LoginPage" bundle:nil];
loginPage.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentModalViewController:loginPage animated:YES];
[loginPage release];

我收到了错误:[self presentModalViewController:loginPage animated:YES];

有人可以帮忙吗?

代码更新`

enter image description here

错误消息

由于未捕获的异常'NSUnknownKeyException'而终止应用程序,原因:'[setValue:forUndefinedKey:]:此类不是密钥tableView的密钥值编码兼容。'

感谢。

2 个答案:

答案 0 :(得分:0)

您是否检查过loginPage是否为nil

答案 1 :(得分:0)

不确定为什么要将登录页面设置为nil。尝试

LoginPage *loginPage = [[LoginPage alloc]initWithNibName:@"LoginPage" bundle:nil];