uitableview 禁止滑动 和 选择行不高亮
禁止高亮:
cell.selectionStyle =UITableViewCellSelectionStyleNone;
or
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
禁止滑动:
tableView.scrollEnabled = NO;
禁止高亮:
cell.selectionStyle =UITableViewCellSelectionStyleNone;
or
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
禁止滑动:
tableView.scrollEnabled = NO;