我正在为我的tableview使用自定义表格视图单元格。为了设置边框,我在自定义单元格上放置了一个视图,我正在更改其边框属性。
self.borderView.layer.borderColor = VIEW_BORDER_COLOR;
我想通过更改其边框颜色来突出显示所选单元格。我试图在didselectrowforindexpath中改变它,
cell.borderView.layer.borderColor = [UIColor yellowColor].CGColor;
但随着细胞的重复使用,它会在滚动时发生变化。
答案 0 :(得分:35)
使用:
Swift 2 :
cell.layer.borderWidth = 2.0
cell.layer.borderColor = UIColor.grayColor().CGColor
Swift 3
cell.layer.borderWidth = 2.0
cell.layer.borderColor = UIColor.gray.cgColor
答案 1 :(得分:19)
您可以使用
[cell.contentView.layer setBorderColor:[UIColor blackColor].CGColor];
[cell.contentView.layer setBorderWidth:2.0f];
希望对你有所帮助。
答案 2 :(得分:4)
必须一次又一次地标记/取消标记(假设您只需要一次选择)边框颜色 -
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if(indexPath.row==self.selectedRow){
cell.borderView.layer.borderColor = [UIColor yellowColor].CGColor;
}else {
cell.borderView.layer.borderColor = [UIColor clearColor].CGColor;
}
}
只需保存/缓存所选索引,如
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//Unselected the prevoius selected Cell
YourCellClass *aPreviousSelectedCell= (YourCellClass*)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:self.selectedRow inSection:0]];
aPreviousSelectedCell.borderView.layer.borderColor = [UIColor clearColor].CGColor;
//Selected the new one-
YourCellClass *aSelectedCell = (YourCellClass*)[tableView cellForRowAtIndexPath:indexPath];
aSelectedCell.borderView.layer.borderColor = [UIColor yellowColor].CGColor;
self.selectedRow = indexPath.row;
}