Avatar
UICollectionViewCellってUITableViewCellと違ってselectionStyleがないんですね https://developer.apple.com/documentation/uikit/uitableviewcell/1623221-selectionstyle タップ中に見た目を変えるには collectionView(_ collectionView: UICollectionView, didHighlightItemAt indexPath: IndexPath) collectionView(_ collectionView: UICollectionView, didUnhighlightItemAt indexPath: IndexPath) の実装が必要そうですが、それにしてもcolorの設定とか必要になるわけですね なんかこう、そういう大層なやつじゃなくて、一発でお手軽にcellをグレーアウトさせる方法はないのでしょうか? そういう場合はcellの選択に任せず、内部でUIButtonを使う…というのが定石になるのでしょうか