TableView调整系统分割线样式

//调整分割线样式
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    
    if (indexPath.section > 0) {
        cell.separatorInset = UIEdgeInsetsMake(0, kScreenWidth, 0, 0);
    }
}

你可能感兴趣的:(TableView调整系统分割线样式)