Tuesday, August 24, 2010

Disabling the selection in UITableView.

To disable the selection in UITableView use the following code
cell.selectionStyle = UITableViewCellSelectionStyleNone;
or


[cell setSelectionStyle:UITableViewCellSelectionStyleNone];

No comments:

Post a Comment