設(shè)置顏色
UITableView 屬性: separatorColor
_tableView.separatorColor = [UIColor blackColor];
隱藏多余的線
設(shè)置 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);
}
}