我正在获取我的数组的重复项,并在此方法中错误地显示了单元格:
这里我正在初始化数组,并将其添加到tableView:
NSArray *sectionsArray = [NSArray arrayWithObjects: @"Location", @"Front Post", @"Front Fixing", @"Front Footplate", @"Rear Post", @"Read Fixing", @"Rear Footplate", @"Horizontal Bracing", @"Diagonal Bracing", @"Front Beam", @"Front Lock", @"Rear Beam", @"Rear Lock", @"Guard", @"Accessories", @"Comments", @"Off load ref", @"Loc Empty", @"Loc Affected", nil];
[_tableArray setObject:sectionsArray atIndexedSubscript:2];
[_tableView reloadData];
由于一些奇怪的原因,总是存在第四个被搞砸的对象,并且要么重复,要么没有来自IB的视图。这是cellForRowAtIndexPath:方法:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell;
if (indexPath.section == 2) {
cell = [tableView dequeueReusableCellWithIdentifier:@"EntryCell"];
cell.tag = indexPath.row;
UILabel *label = (UILabel *)[cell viewWithTag:3];
[label setText:[[_tableArray objectAtIndex:2] objectAtIndex:indexPath.row]];
}
return cell;
}
我已记录字符串[[_tableArray objectAtIndex:2] objectAtIndex:indexPath.row]
,并记录正确的字符串。
答案 0 :(得分:1)
删除cell.tag = indexPath.row;
因为您正在重复使用单元格并分配tag
会使其混淆。例如,对于第二行,您指定tag = 2,然后向下滚动时将tag = 6指定给同一行。
答案 1 :(得分:0)
添加以下行:
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
else
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}