cell的常用设置
1、点击UITableCell颜色不改变(cell不可点击)
cell.selectionStyle = UITableViewCellSelectionStyleNone;
更改cell选中的背景
UIView *cellView = [[UIView alloc] init];
cellView.frame = CGRectMake(<#0#>, <#0#>, <#cell.frame.size.width#>, <#44#>);
cellView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"<#xxx.png#>"]];
cell.selectedBackgroundView = cellView;
2、cell的下划线:
cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, [UIScreen mainScreen].bounds.size.width);
3、去除所有的下划线:
tableView.separatorStyle = UITableViewCellSeparatorStyleNone; //去除tableview中的所有下划线;
4、空白cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"blankCell"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"blankCell"];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;