[iphone] UITableView의 섹션 사이 간격을 줄입니다.

UITableView의 두 섹션 사이의 간격을 줄이는 방법이 있습니까? 내가 가진 모든 단일 섹션 사이에 약 15 픽셀이 있습니다. 이미 0을 반환하려고 않았다 -tableView:heightForFooterInSection:-tableView:heightForHeaderInSection:하지만 아무것도 변경되지 않습니다.

어떤 제안?



답변

조금 까다로 웠지만이 코드를 사용해보십시오.

- (CGFloat)tableView:(UITableView*)tableView
           heightForHeaderInSection:(NSInteger)section {
    if (section == 0) {
        return 6.0;
    }

    return 1.0;
}

- (CGFloat)tableView:(UITableView*)tableView
           heightForFooterInSection:(NSInteger)section {
    return 5.0;
}

- (UIView*)tableView:(UITableView*)tableView
           viewForHeaderInSection:(NSInteger)section {
    return [[UIView alloc] initWithFrame:CGRectZero];
}

- (UIView*)tableView:(UITableView*)tableView
           viewForFooterInSection:(NSInteger)section {
    return [[UIView alloc] initWithFrame:CGRectZero];
}

그에 따라 값을 변경하십시오. 공백을 제거하려면 0.0이 허용되지 않을 것이라고 생각합니다. 가장 작은 제정신 값은 1.0 인 것 같습니다.


답변

거리를 0으로 줄이려면 다음을 사용해야합니다.

tableView.sectionHeaderHeight = 0.0;
tableView.sectionFooterHeight = 0.0;

UITableViewDelegate를 제공하면 0보다 큰 수레에서 시작하는 효과 만 만들기 때문입니다.

-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section
{
    return 1.0;
}


-(CGFloat)tableView:(UITableView*)tableView heightForFooterInSection:(NSInteger)section
{
    return 1.0;
}

-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section
{
    return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
}

-(UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section
{
    return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
}

(XCode 4.0.2와 함께 iOS 4.1 사용)


답변

실제로 크기 탭 아래의 인터페이스 빌더에서 바닥 글 / 헤더 / 셀 높이를 설정할 수 있습니다. 기본적으로 머리글 / 바닥 글은 10.0으로 설정되어 있습니다.


답변

섹션 머리글 / 바닥 글 높이를 줄여야합니다. 그러면 섹션 사이의 공간이 줄어 듭니다.

이 코드를 사용해보십시오

그것은 나를 위해 작동합니다 🙂

tableView.sectionHeaderHeight = 2.0;
tableView.sectionFooterHeight = 2.0;


답변

스토리 보드에서 섹션 바닥 글 및 머리글의 높이를 줄일 수도 있습니다. tableview에서-> 크기 관리자. 섹션 높이로 이동하십시오.

스토리 보드의 UITableView 크기 관리자.

기본적으로 일반 스타일 테이블의 경우 22로, 그룹화 된 스타일 테이블의 경우 10으로 설정되어 있습니다. 머리글과 바닥 글의 값을 개별적으로 늘리거나 줄여 값을 구성 할 수 있습니다.


답변

나에게 문제는 그룹 테이블 뷰 스타일 ( UITableViewStyleGrouped)을 사용했기 때문 입니다. 그것을 일반 스타일 ( UITableViewStylePlain)로 변경했을 때 내 tableView:heightForHeaderInSection:방법은 각 섹션 헤더의 크기를 결정하는 유일한 방법이었습니다.


답변

이것을 사용하면 0이 예상대로 작동하지 않습니다.

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
     return .leastNormalMagnitude
}

func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
    return .leastNormalMagnitude
}