user1237220
user1237220

Reputation: 119

i want to block touch input in other cell of table view controller

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

Answers (1)

AnishGupta
AnishGupta

Reputation: 204

Just Disable the user Interaction in the Did select row Delegate Method of the UITableView

Upvotes: 3

Related Questions