Я пытаюсь выделить фон ячейки, когда пользователь выбирает ее.
Мне удалось изменить границу ячейки, когда пользователь выбирает ее.
override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
addToList.append(objectsArray[indexPath.row])
let cell = collectionView.cellForItem(at: indexPath)
cell?.contentView.layer.borderWidth = 2.0
cell?.contentView.layer.borderColor = UIColor.gray.cgColor
}
Мне не удалось изменить фон.
Можно ли это сделать?
Спасибо!