У меня есть два массива Int, в которых хранится индекс, и я хочу, чтобы цвет фона ячейки IndexPath.row изменился соответствующим образом.
let redCell = ["0","1","4"]
let greenCell = ["2","3"]
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell = tableView.dequeueReusableCell(withIdentifier: "playQuizTableViewCell") as? playQuizTableViewCell
if indexPath.row == redCell {
cell?.textLabel?.backgroundColor = UIColor.red
} else if indexPath.row == greenCell{
cell?.textLabel?.backgroundColor = UIColor.green
} else {
cell?.textLabel?.backgroundColor = UIColor.black
}
}
Я хочу изменить цвет ячейки indexPath.row, который совпадает внутри массива.
Пожалуйста, ведите меня.
Спасибо