UITableView - separator

设置颜色

UITableView 属性: separatorColor
_tableView.separatorColor = [UIColor blackColor];

隐藏多余的线

设置 UITableView 的 tableFooterView 
_tableView.tableFooterView  = [UIView new];

隐藏最后一条线

重写代理方法: -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    cell.separatorInset = UIEdgeInsetsMake(0, 0 , 0, 0 );
    

    if (indexPath.row==dataArray.count-1) {
        cell.separatorInset = UIEdgeInsetsMake(0, ScreenWidth , 0, 0);
    }
}



你可能感兴趣的:(UITableView - separator)