TableViewCell分割线设置

1.对齐两边分割线:

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

            [tableView setSeparatorInset:UIEdgeInsetsZero];

        }

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

            [tableView setLayoutMargins:UIEdgeInsetsZero];

        }

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

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

        [cell setSeparatorInset:UIEdgeInsetsZero];

    }

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

        [cell setLayoutMargins:UIEdgeInsetsZero];

    }

}

2.取消多余的分割线:将足视图设为0frame

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];

你可能感兴趣的:(TableViewCell分割线设置)