要以编程方式使TableViewCell在灰色背景下显示为一张纸或“标签”,可以通过以下步骤实现:
cell.backgroundColor = UIColor.gray
cell.layer.borderWidth = 1.0
cell.layer.borderColor = UIColor.black.cgColor
cell.layer.cornerRadius = 8.0
cell.layer.shadowColor = UIColor.black.cgColor
cell.layer.shadowOffset = CGSize(width: 0, height: 2)
cell.layer.shadowOpacity = 0.4
cell.layer.shadowRadius = 4.0
let label = UILabel(frame: CGRect(x: 10, y: 10, width: cell.frame.width - 20, height: cell.frame.height - 20))
label.text = "这是一个标签"
label.textAlignment = .center
cell.addSubview(label)
通过以上步骤,TableViewCell将在灰色背景下显示为一张纸或“标签”。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云