我正在使用 TableView,我希望为所选单元格的文本添加背景颜色。像这样的东西:
图像代表一个单元格,背景颜色是分开的。这是需要的。
我尝试执行以下操作,但它为整个单元格或仅文本添加了背景颜色。
之间的分隔是最重要的,添加 backgroundColor 会将颜色应用于整个单元格,这是不想要的。
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { //Highlighting text - Add saving text
let cell = tableView.cellForRow(at: indexPath)
print("You selected cell number: \(indexPath.row)!")
cell?.textLabel?.textColor = .yellow
cell?.textLabel?.backgroundColor = .yellow // Is not desired outcome
}