Reputation: 119
I have table view controller with me. What I want is that I want to block inout in other cell(rows), after I click on one cell. for example If I have 4 cell with me then if user clicks on 1st cell then user input should be blocked in 2,3,4. Similarly if I select 2, input should be blocked in 1,3,4. How to do that?
Upvotes: 0
Views: 112
Reputation: 204
Just Disable the user Interaction in the Did select row Delegate Method of the UITableView
Upvotes: 3