2018-07-12 设置TableViewCell分割线/下划线

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


    // 设置cell下划线颜色 和 颜色

    [tableView setSeparatorColor:[UIColor sCellLineColor]];


    [cell setSeparatorInset:UIEdgeInsetsZero];


    [cell setLayoutMargins:UIEdgeInsetsZero];

}

你可能感兴趣的:(2018-07-12 设置TableViewCell分割线/下划线)