1、UITableViewCell
(1)属性
-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath
{
Cell.selectionStyle = UITableViewCellSelectionStyleNone; //禁用高亮状态
Cell.userInteractionEnabled = NO; //禁用点击cell Action 事件
}
原文:http://www.cnblogs.com/pengyuan/p/3529678.html