问题:iOS 表格视图 - 静态单元格(已分组) - 更改节标题文本颜色
答案:
要更改 iOS 表格视图中的静态单元格(已分组)的节标题文本颜色,您可以使用以下方法:
UICollectionViewCell
的 textLabel
属性来更改颜色。cell.textLabel?.textColor = UIColor.red
UICollectionViewCell
的 detailTextLabel
属性来更改颜色。cell.detailTextLabel?.textColor = UIColor.blue
UICollectionViewCell
的 selectedBackgroundView
属性来更改选中时的背景颜色。cell.selectedBackgroundView = UIView(frame: CGRect(x: 0, y: 0, width: 0, height: CGFloat.leastNormalMagnitude))
cell.selectedBackgroundView?.backgroundColor = UIColor.red
名词解释:
领取专属 10元无门槛券
手把手带您无忧上云