tags:

views:

407

answers:

1

Hi, i want to disable click on particular Cell.it means, i want not to show highlight color(selection indication) when we touch on particular cell? any help please?

+1  A: 

Either use cell.selectionStyle = UITableViewCellSelectionStyleNone; or return false or return null in the delegate method tableView:willSelectRowAtIndexPath.

luvieere