이 코딩 문제에 대해 도움을 받으실 수 있기를 바랍니다. 나는 탐색 모음 버튼으로 내 컬렉션보기 셀 배경 색상을 변경하려면이 내 바 버튼을 선택 코드 :컬렉션보기 변경 내비게이션 막대 버튼으로 셀 배경 신속한
func handleBrightnessChanged() {
let readingCell = ReadingsDisplayCell()
readingCell.backgroundColor = .red
}
그러나, 버튼을하지 않습니다 내가 그것을 클릭 아무것도. 저를 도와주세요? 아래는 UICollectionViewCell 클래스입니다.
class ReadingsDisplayCell: UICollectionViewCell {
override init(frame: CGRect) {
super.init(frame: frame)
backgroundColor = UIColor.gray
}
required init?(coder aDecoder: NSCoder) {
fatalError("fatal error in Daily cell")
}
}
고맙습니다.
런타임에는 collectionView 셀의 배경색이 회색입니까? –