I am developing an iPhone application with UITableView
. I have implemented a check mark on each cell with didSelectRowAtIndexPath
delegate.
Now I want to select a cell that disable all other cells (remove the check marks) and vice versa (eg: to select 8th cell that shows the check mark on 8th cell and remove the check mark of other cells, then select other cell shows the check mark on that cell and remove the check mark on 8th cell).
How to implement this in UITableView
?