设置tableViewcell 下划线宽度 及其颜色

[self.tableView setSeparatorInset:UIEdgeInsetsZero];

[self.tableView setLayoutMargins:UIEdgeInsetsZero];

[self.tableView  setSeparatorColor:[UIColor  colorWithRed:255/255.0f green:255/255.0f blue:255/255.0f alpha:1]];

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{

[cell setSeparatorInset:UIEdgeInsetsZero];

[cell setLayoutMargins:UIEdgeInsetsZero];

}

你可能感兴趣的:(设置tableViewcell 下划线宽度 及其颜色)