我正在实现一个颜色选择表视图,用户可以在其中选择,比如说,10种颜色(取决于产品)。用户还可以选择其他选项(如硬盘容量,...)。
所有颜色选项都在它们自己的 tableview 部分中。
我希望在 textLabel 的左侧显示一个小正方形,以显示实际的颜色。
现在我正在添加一个简单的方形 UIView,给它正确的背景颜色,像这样:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:RMProductAttributesCellID];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:RMProductAttributesCellID] autorelease];
cell.indentationWidth = 44 - 8;
UIView *colorThumb = [[[UIView alloc] initWithFrame:CGRectMake(8, 8, 28, 28)] autorelease];
colorThumb.tag = RMProductAttributesCellColorThumbTag;
colorThumb.hidden = YES;
[cell.contentView addSubview:colorThumb];
}
RMProductAttribute *attr = (RMProductAttribute *)[_product.attributes objectAtIndex:indexPath.section];
RMProductAttributeValue *value = (RMProductAttributeValue *)[attr.values objectAtIndex:indexPath.row];
cell.textLabel.text = value.name;
cell.textLabel.backgroundColor = [UIColor clearColor];
UIView *colorThumb = [cell viewWithTag:RMProductAttributesCellColorThumbTag];
colorThumb.hidden = !attr.isColor;
cell.indentationLevel = (attr.isColor ? 1 : 0);
if (attr.isColor) {
colorThumb.layer.cornerRadius = 6.0;
colorThumb.backgroundColor = value.color;
}
[self updateCell:cell atIndexPath:indexPath];
return cell;
}
这显示良好,没有问题。
我唯一的问题是,当我选择一个“颜色”行,在淡入蓝色选择动画期间,我的自定义 UIView (cololThumb)是隐藏的。在选择/取消选择动画结束后,它再次可见,但是这会产生一个丑陋的工件。
我该怎么做才能纠正这个问题? 我不是应该在正确的位置插入子视图吗?
(在 did SelectRowAtIndexPath 中没有什么特别的地方,我只是将单元格的附件更改为复选框或者什么都不做,然后取消选择当前的 indexPath)。