swift 在collectionView单元格中,我添加了cell.alpha,但cell.alpha不起作用

eit6fx6z  于 2023-05-27  发布在  Swift
关注(0)|答案(1)|浏览(79)

代码:

func collectionView(\_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -\> UICollectionViewCell {
let cell = myCollectionView.dequeueReusableCell(withReuseIdentifier: "CollectionViewCell", for: indexPath) as! CollectionViewCell
cell.alpha = 0
return cell
}

cell.alpha不工作,请帮助

dgtucam1

dgtucam11#

您可以将alpha应用于单元格的内容。

cell.contentView.alpha = 0.3

相关问题