gpt4 book ai didi

iphone - TableView 加载错误的单元格

转载 作者:行者123 更新时间:2023-11-29 04:19:00 25 4
gpt4 key购买 nike

不太确定如何解释这一点,但在我的 UITableView 上,我有一行代码,当我单击一个单元格时,它会将我带到一个新 View ,该 View 根据名称更新其标题细胞。但是,如果我有两个单元格,一个名为“一”,一个名为“二”,当我单击“二”时,它会将我带到标题为“一”的 View ,反之亦然。知道可能是什么原因造成的吗?抱歉,我无法提供更多帮助。

-(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];
}

最佳答案

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

试试这个代码:

- (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];
}

关于iphone - TableView 加载错误的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13269439/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com