知识点积累(持续更新)

1、UITableViewCell

(1)属性

-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath

{

 Cell.selectionStyle = UITableViewCellSelectionStyleNone;  //禁用高亮状态

 Cell.userInteractionEnabled = NO; //禁用点击cell Action 事件

}

原文地址:https://www.cnblogs.com/pengyuan/p/3529678.html