метод

енил цвет надписиdidSelectRowAt но когда я прокручиваюUITableView это также влияет на другиеtextlabel также

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
 let cell = tableView.cellForRow(at: indexPath) as! TableViewCell


    if (cell.LBLIntrest.textColor == (UIColor.black))
    {
         cell.LBLIntrest.textColor = Uicolor.blue
    } else {
          cell.LBLIntrest.textColor = Uicolor.black
    }
}

Ответы на вопрос(2)

Ваш ответ на вопрос