去除tableViewCell的橫線和屏幕的間距

-(void)viewDidLayoutSubviews {spa

    

    if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {3d

        [self.tableView setSeparatorInset: UIEdgeInsetsZero];orm

    }table

    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {select

        [self.tableView setLayoutMargins: UIEdgeInsetsZero];margin

    }top

}tab

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

    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {vi

        [cell setLayoutMargins:UIEdgeInsetsZero];

    }

    if ([cell respondsToSelector:@selector(setSeparatorInset:)]){

        [cell setSeparatorInset:UIEdgeInsetsZero];

    }

}

相關文章
相關標籤/搜索