0

我希望有人可以帮助解决这个问题。

我有一个 UITableViewController 并希望在选择表格单元时将一个值传递给一个名为 NewsArticleViewController 的 UIViewController。我已经创建了从 tablecell 到视图控制器的 segue。

当我在下面调用我的 prepareForSegue 方法时:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if([[segue identifier] isEqualToString:@"ShowNewsArticle"])
    {
        NSIndexPath *indexPath = [self._tableView indexPathForSelectedRow];
        NSDictionary *article = [_articles objectAtIndex:indexPath.row];
        NSString *articleID = [article valueForKey:@"id"];
        NSLog(@"Trying %@", articleID);

        NewsArticleViewController *detailViewController = [segue destinationViewController];
        detailViewController.articleID = articleID;
    }
}

NSLog 在最后一行发生错误之前正确显示了 NSString 值。

我得到错误:

2012-12-11 23:08:41.915 My School[4689:c07] -[UIViewController setArticleID:]: unrecognized selector sent to instance 0x8088140
2012-12-11 23:08:41.916 My School[4689:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIViewController setArticleID:]: unrecognized selector sent to instance 0x8088140'
*** First throw call stack:
(0x1800012 0x11c5e7e 0x188b4bd 0x17efbbc 0x17ef94e 0x3ca1 0x554ac7 0x554b54 0x1bc899 0x1bcb3d 0xbc3e83 0x17bf376 0x17bee06 0x17a6a82 0x17a5f44 0x17a5e1b 0x1cc87e3 0x1cc8668 0x10d65c 0x1f4d 0x1e75 0x1)
libc++abi.dylib: terminate called throwing an exception

在目标视图控制器 NewsArticleViewController 上,我在标题中声明了这一点:

@property(strong,nonatomic) id articleID;

我已经在方法中合成了属性。我正在使用 ARC,我不知道这是否是具体原因,但在我解决这个问题之前我无法继续。谢谢。

4

1 回答 1

2

在您的错误消息中,UIViewController报告“无法识别的选择器”错误。我怀疑你的故事板没有NewsArticleViewController为这个场景指定你的自定义。因此,它使用默认值UIViewController,显然不理解setArticleID.

检查 Interface Builder 中视图控制器的“自定义类”设置:

在此处输入图像描述

如果自定义类没有指定,它看起来像上面的屏幕快照。只需填写班级名称。

于 2012-12-11T23:34:39.900 回答