问题描述
在我的iOS应用中,我想更改所选UITableViewCell
的外观。这是我所拥有的,并且运行良好,除了在iOS 14上,我收到一条错误消息,说selectedBackgroundView
是nil
。我需要在此处进行哪些更改,使其也可以在iOS 14上使用?
override func setSelected(_ selected: Bool,animated: Bool) {
super.setSelected(selected,animated: animated)
self.selectedBackgroundView!.backgroundColor = selected ? UIColor.grey : .white
menuLabel.textColor = selected ? UIColor.darkGrey : UIColor.primaryDark
iconImageView.tintColor = selected ? UIColor.darkGrey : UIColor.primaryDark
}
解决方法
这对我有用:
self.contentView.backgroundColor = selected ? UIColor.grey : .white