所以我被困在这一天大约一天。点击tableview单元格时如何更改UIImage颜色的颜色?例如,我有一个黑色图像,当我点击一个tableview单元格时,它会将该图像更改为白色?谢谢!
我尝试使用此代码,但我不知道如何正确实现它!
let theImageView = UIImageView(image: UIImage(named:"foo")!.imageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate))
theImageView.tintColor = UIColor.redColor()
答案 0 :(得分:0)
看起来你有合适的作品,但不知道在哪里打电话。您将使用cellForRowAt:
方法将图像指定给图像视图。
func tableView(_ tableView: UITableView, cellForRowAt indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: reuseIdentifier, for: indexPath)
cell.imageView.image = UIImage(named:"foo")!.withRenderingMode(.alwaysTemplate)
return cell
}
然后,您将在didSelect
委托方法中更改图像视图的色调颜色。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.imageView.tintColor = newColor
}
}