模态视图控制器问题

发布于 2024-11-17 04:14:35 字数 725 浏览 2 评论 0原文

当我尝试显示我的 modalviewcontroller 时,出现 SIGABRT 错误。

这是代码:

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

我收到错误: [selfpresentModalViewController:loginPageanimated:YES];

任何人都可以帮忙吗?

代码更新`

在此处输入图像描述

错误消息

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

谢谢。

I am getting a SIGABRT error when I'm trying to show my modalviewcontroller.

This is the code:

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

I'm getting the error on the line: [self presentModalViewController:loginPage animated:YES];

Can anyone help?

Code Update`

enter image description here

Error Message

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key tableView.'

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

债姬 2024-11-24 04:14:35

不知道为什么您将 loginPage 设置为 nil。尝试

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

Not sure why youre setting loginPage to nil. Try

LoginPage *loginPage = [[LoginPage alloc]initWithNibName:@"LoginPage" bundle:nil];
╰つ倒转 2024-11-24 04:14:35

您是否检查过 loginPage 是否为 nil

Have you checked if the loginPage is nil?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文