0

不太确定如何解释这一点,但UITableView我有一行代码,当我单击一个单元格时,它会将我带到一个新视图,该视图根据单元格的名称更新它的标题。但是,如果我有两个单元格,一个名为“一”,一个名为“二”,当我单击“二”时,它会将我带到标题为“一”的视图,反之亦然。有什么想法可能导致这种情况吗?抱歉,我无法提供更多帮助。

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
    ACollection *newView = [[ACollection alloc] init];
    newView.theTitle = [self.tableView cellForRowAtIndexPath:indexPath].textLabel.text;
    [self.navigationController pushViewController:newView animated:YES];
}
4

1 回答 1

1

我认为您为此选择了错误的方法

试试这个代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [self.tableView deselectRowAtIndexPath:indexPath animated:YES];

    ACollection *newView = [[ACollection alloc] init];
    newView.theTitle = [self.tableView cellForRowAtIndexPath:indexPath].textLabel.text;
    [self.navigationController pushViewController:newView animated:YES];
}
于 2012-11-07T12:15:54.857 回答