1. 程式人生 > >UITableview禁止cell點選選中

UITableview禁止cell點選選中

- (InspectorWorkCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    InspectorWorkCell *cell = [InspectorWorkCell cellWithTableView:tableView];
    cell.delegate = self;
    cell.index = indexPath.row;
    cell.inspectorWorkModel = _data[indexPath.row];
    // 禁止cell點選選中
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}