Answers for "swift 4 code to remove selected cell selection when click on another cell in swift 5"

0

deselect cell swift

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    //Change the selected background view of the cell.
    tableView.deselectRow(at: indexPath, animated: true)
}
Posted by: Guest on May-05-2020

Code answers related to "swift 4 code to remove selected cell selection when click on another cell in swift 5"

Code answers related to "Swift"

Browse Popular Code Answers by Language