How to disable the tableView selection
Solution:
You can disable the selection during the editing the table view using the below code.
you can use the below code in the viewdidload
tableView.allowsSelection = false
You can disable the selection during the editing the table view using the below code.
you can use the below code in the viewdidload
tableView.allowsSelection = false
Comments
Post a Comment