代码:
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
不工作,请帮助
1条答案
按热度按时间dgtucam11#
您可以将
alpha
应用于单元格的内容。