Answers for "uitableview no highlight on select"

0

uitableview no highlight on select

Swift 5

// will stop selections
tableView.allowsSelection = false


// will not highlight selection but still register the selection action
cell.selectionStyle = .none
Posted by: Guest on April-28-2021

Browse Popular Code Answers by Language