我已根据inStock或outStock编写了一个代码,用于修改单元边框的颜色,如果它在inStock中它将是红色边框,否则它将是绿色的,但我不适合我,我把它放在willDisplayCell这是我的代码:
func tableView(_ tableView: UITableView,
willDisplay cell: UITableViewCell,
forRowAt indexPath: IndexPath){
cell.backgroundColor = UIColor.clear
cell.contentView.backgroundColor = UIColor.clear
let whiteRoundedView : UIView = UIView(frame: CGRect(x:10,y: 5,width: self.view.frame.size.width - 20,height: 214))
whiteRoundedView.layer.masksToBounds = false
whiteRoundedView.layer.cornerRadius = 5.0
whiteRoundedView.layer.shadowOffset = CGSize(width: -1,height: 1)
whiteRoundedView.layer.borderWidth = 2
cell.contentView.addSubview(whiteRoundedView)
cell.contentView.sendSubview(toBack: whiteRoundedView)
if stock[indexPath.row] == "inStock" {
whiteRoundedView.layer.borderColor = UIColor.red.cgColor
}
else {
whiteRoundedView.layer.borderColor = UIColor.green.cgColor
}
}
答案 0 :(得分:9)
尝试将代码移动到cellForRowAt
这样的方法
cell.layer.masksToBounds = true
cell.layer.cornerRadius = 5
cell.layer.borderWidth = 2
cell.layer.shadowOffset = CGSize(width: -1, height: 1)
let borderColor: UIColor = (stock[indexPath.row] == "inStock") ? .red : .green
cell.layer.borderColor = borderColor.cgColor
答案 1 :(得分:0)
您正在为每个单元格多次添加whiteRoundedView - 因为重用了单元格实例。
你应该只创建一次(创建UITableViewCell时) - 然后在willDisplayCell函数中操作它的颜色。
我建议创建自定义UITableViewCell,但您也可以通过使用view" tag"来避免这个问题。属性并检查它是否已存在。