gpt4 book ai didi

ios - 自定义 UITableViewCell 未在搜索时更新

转载 作者:行者123 更新时间:2023-11-28 17:44:31 29 4
gpt4 key购买 nike

我正在使用带有 uiSearchBar 的 uitableviewcontroller。在 searchBarSearchButtonClicked 方法中,我获取数据并将其填充到 uitableviewcontroller 中:

 - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {

NSDictionary *data = [self getData];

[self.tableData removeAllObjects];
[self.tableData addObjectsFromArray:[data objectForKey:@"myKey"]];
[self.view reloadData];
}

问题是我使用的是自定义 uitableviewcell。当我单击搜索按钮时,将返回新行,但上次搜索时检索到的行仍然存在。

例如,如果我的初始搜索返回了 1 个结果行,而这次我进行了额外的搜索,返回了 3 行,那么第一行将来自第一次搜索,随后的两行将来自第二次搜索。

我在 View 中重新加载数据,所以我不确定为什么单元格会持续存在。这是我创建单元格的 cellforrowatindexpath 方法:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *MyIdentifier = @"SearchResult";

UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:MyIdentifier];

NSDictionary *data = [self.tableData objectAtIndex:indexPath.row];

if (cell == nil) {
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:MyIdentifier] autorelease];



myLabelDetail = [[UILabel alloc] initWithFrame:CGRectMake(152.0, 32.0, 60.0, 5.0)];
myLabelDetail.tag = INSTRUMENT_ID_LABEL_TAG;
myLabelDetail.font = [UIFont systemFontOfSize:14.0];
myLabelDetail.textAlignment = UITextAlignmentLeft;
myLabelDetail.textColor = [UIColor grayColor];
myLabelDetail.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight;
myLabelDetail.text = [data objectForKey:@"title"];
[cell.contentView addSubview:myLabelDetail];
[myLabelDetail release];



cell.imageView.image = [UIImage imageNamed:@"icon"];
cell.textLabel.text = @"Title Text";
cell.detailTextLabel.text = @"My Label: ";


cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}else{
myLabelDetail = (UILabel *)[cell.contentView viewWithTag:DETAIL_LABEL_TAG];
}

return cell;
}

最佳答案

我认为问题在于使用数据源。我想 tableData 是您用来向 tableview 提供数据的数组,因为每次 - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar 方法被调用。但是 tableData 没有在 cellForRowAtIndexPath 方法中的任何地方使用。从 tableData 数组向 tableView 提供数据可能会解决您的问题。

关于ios - 自定义 UITableViewCell 未在搜索时更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6740795/

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