我正在使用一个自定义表视图单元格作为我的tableview.为了设置边框,我已经看到了自定义单元格,并且我正在更改其边框属性.
self.borderView.layer.borderColor = VIEW_BORDER_COLOR;
我想通过更改其边框颜色来突出显示所选单元格.我试图改变它在didselectrowforindexpath,
cell.borderView.layer.borderColor = [UIColor yellowColor].CGColor;
但是随着单元格的重用,它会在滚动上发生变化.
解决方法
使用:
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