gpt4 book ai didi

ios - swift:更改特定单元格中的图像

转载 作者:行者123 更新时间:2023-11-28 07:42:48 25 4
gpt4 key购买 nike

我有 collectionView。我想更改特定单元格中的图像。

我使用这段代码:

func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {

let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! MasterViewCell

if indexPath.section == 1 && indexPath.row == 5{
cell.cover.image = UIImage(named: "sfsdf.png")
}
}

但是图像在所有单元格中都发生了变化。如何解决?

最佳答案

这是因为出队

func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {

let myCell = cell as! MasterViewCell

if indexPath.section == 1 && indexPath.row == 5{
myCell.cover.image = UIImage(named: "sfsdf.png")
}
else {
myCell.cover.image = UIImage(named: "other.png") // supply other image or access from model array
}
}

关于ios - swift:更改特定单元格中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51746441/

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