Swiftの質問です
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
point = point+1
pointLabel.text = String(point)
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return 12 } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) cell.backgroundColor = .black return cell
}
cellを12個配置したのですがそのうちの1つ他の色にし、12個のうちランダムで1つを他の色で表示したいのですがどうやっていいのかわかりません
回答1件
あなたの回答
tips
プレビュー