当前位置:  开发笔记 > IOS > 正文

如何调试"无法识别的选择器发送到实例"问题?

如何解决《如何调试"无法识别的选择器发送到实例"问题?》经验,为你挑选了2个好方法。

我在视图控制器中有以下代码(在所有其他方面)似乎工作正常:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    ProblemViewController *problemViewController = [[ProblemViewController alloc] initWithNibName:@"ProblemViewController" bundle:nil];
    problemViewController.problem = (Problem*)[self.problems objectAtIndex:indexPath.row];
    [self.navigationController pushViewController:problemViewController];
    [problemViewController release];
}

但是,当我运行此函数时,我收到以下错误:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[ProblemViewController initWithNibName:bundle:]: unrecognized selector sent to instance 0x57ca80'

我对可能导致它的原因感到茫然,所以我的问题是:我应该如何最好地调试这个问题?有什么明显的我应该检查吗?



1> August..:

检查ProblemViewController的基类.我打赌你不是从包含该initWithNibName:bundle:方法的UIViewController继承而来的.



2> Kevin Cantwe..:

这个问题有很多答案,所有人基本上都说同样的,正确的事情:不知何故,你试图调用的方法实际上并不存在.

但是,如果你的头撞在墙上(就像我今天一小时那样),请确保首先尝试使用xcode清理项目.有时,我不知道为什么,xcode可能会进入一个糟糕的状态,并且无法正确地将您的项目编译到模拟器中.它会告诉您构建成功,但是当部署到模拟器时,您会开始看到运行时错误,好像只有一半的更改被选中.所以是的,那就发生了.

推荐阅读
跟我搞对象吧
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有