gpt4 book ai didi

swift - 点击 tableview 单元格时如何更改 UIImage 颜色?

转载 作者:行者123 更新时间:2023-11-28 08:28:11 26 4
gpt4 key购买 nike

所以我已经坚持了一天左右。点击 tableview 单元格时如何更改 UIImage 颜色的颜色?因此,例如,我有一个黑色图像,当我点击一个 tableview 单元格时,它会将图像更改为白色?谢谢你!

我试过使用这段代码,但我不知道如何正确实现它!

    let theImageView = UIImageView(image: UIImage(named:"foo")!.imageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate))
theImageView.tintColor = UIColor.redColor()

最佳答案

看起来你有正确的部分,但不知道在哪里调用它们。您将在 cellForRowAt: 方法中将图像分配给 ImageView 。

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 委托(delegate)方法中更改 ImageView 的色调。

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
if let cell = tableView.cellForRow(at: indexPath) {
cell.imageView.tintColor = newColor
}
}

关于swift - 点击 tableview 单元格时如何更改 UIImage 颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39457800/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com