gpt4 book ai didi

Swift UICollectionView cellForItemAtIndexPath 设置单元格内容不正确

转载 作者:搜寻专家 更新时间:2023-11-01 07:22:31 24 4
gpt4 key购买 nike

enter image description here

enter image description here

我想隐藏按钮,只要它的标题等于“str”变量即可。

我无法添加更多照片,但它对“7:00”、“12:00”、“17:00”、“22:00”值做同样的事情。只想要“2:00”并为此进行比较。

这是 (collectionView)cellForItemAtIndexPath 错误还是其他什么?我很困惑。请帮助..

最佳答案

当您滚动时,它将重新使用该单元格,因此您可以根据条件设置 hidden true false。我认为这是你的问题。

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let hour = array[indexPath.row]
let str ="2:00"
if(cell.hourBtn.titleLabel?.text ==str {
cell.hourBtn.hidden = true
}
else {
cell.hourBtn.hidden = false
}
}

关于Swift UICollectionView cellForItemAtIndexPath 设置单元格内容不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38066501/

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