Код: Выделить всё
let cellRegistration = UICollectionView.CellRegistration { (cell, indexPath, item) in
let red = UIView()
red.backgroundColor = UIColor.red
cell.selectedBackgroundView = red
var content = cell.defaultContentConfiguration()
content.text = item.menuTitle
content.image = item.image
cell.contentConfiguration = content
}
Подробнее здесь: https://stackoverflow.com/questions/633 ... ectionview
Мобильная версия