Jak zmienić wysokość zgrupowanego nagłówka UITableView?


88

Wiem, jak zmienić wysokość nagłówków sekcji w widoku tabeli. Ale nie mogę znaleźć żadnego rozwiązania, aby zmienić domyślny odstęp przed pierwszą sekcją.

W tej chwili mam ten kod:

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

wprowadź opis obrazu tutaj



@JitendraDeore Dzięki za poprowadzenie mnie we właściwym kierunku
circuitlego

Odpowiedzi:


219

Zwróć CGFLOAT_MINzamiast 0 dla żądanej wysokości sekcji.

Zwrócenie 0 powoduje, że UITableView używa wartości domyślnej. To jest nieudokumentowane zachowanie. Jeśli zwrócisz bardzo małą liczbę, skutecznie otrzymasz nagłówek o zerowej wysokości.

Swift 3:

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

Szybki:

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    if section == 0 {
        return CGFloat.min
    }
    return tableView.sectionHeaderHeight
}

Obj-C:

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

8
W języku Swift „CGFLOAT_MIN” jest niedostępne: zamiast tego użyj CGFloat.min.
tounaobun

4
CGFloat.min spowodował awarię, ponieważ CGFloat.min zwraca wartość ujemną, np. -0,0000000000001
Pavel

2
Być może jest to pedanteria, ale CGFloat.min nie jest bardzo małą liczbą, jest to bardzo duża liczba ujemna. Jeśli chcesz mieć bardzo małą liczbę, użyjesz epsilon.
alex bird

6
W Swift 3 jestCGFloat.leastNormalMagnitude
ixany

1
Porada: nie używaj tej wartości estimatedHeightForHeaderInSection, aplikacja ulegnie awarii.
Pedro Paulo Amorim

27

Jeśli używasz tableViewstylu zgrupowanego , tableViewautomatycznie ustaw górne i dolne wstawki. Aby ich uniknąć i uniknąć wewnętrznego ustawienia wstawek, użyj metod delegatów dla nagłówka i stopki. Nigdy nie zwracaj 0.0 aleCGFLOAT_MIN .

Cel C

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    // Removes extra padding in Grouped style
    return CGFLOAT_MIN;
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    // Removes extra padding in Grouped style
    return CGFLOAT_MIN;
}

Szybki

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    // Removes extra padding in Grouped style
    return CGFloat.leastNormalMagnitude
}

func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
    // Removes extra padding in Grouped style
    return CGFloat.leastNormalMagnitude
}

Dodatkowo musiałem zwrócić zero, aby viewForHeaderInSectionnagłówek całkowicie zniknął.
Dominik Seemayr

19

Wygląda na to, że nie mogę ustawić widoku nagłówka tabeli z wysokością 0. W końcu wykonałem następujące czynności:

- (void)viewWillAppear:(BOOL)animated{
    CGRect frame = self.tableView.tableHeaderView.frame;
    frame.size.height = 1;
    UIView *headerView = [[UIView alloc] initWithFrame:frame];
    [self.tableView setTableHeaderView:headerView];
}

Lepiej byłoby ustawić wysokość tutaj:- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { return 1.0f; }
uniruddh

19

To zadziałało dla mnie w Swift 4 . Zmodyfikuj swój UITableViewnp. W viewDidLoad:

// Remove space between sections.
tableView.sectionHeaderHeight = 0
tableView.sectionFooterHeight = 0

// Remove space at top and bottom of tableView.
tableView.tableHeaderView = UIView(frame: CGRect(origin: .zero, size: CGSize(width: 0, height: CGFloat.leastNormalMagnitude)))
tableView.tableFooterView = UIView(frame: CGRect(origin: .zero, size: CGSize(width: 0, height: CGFloat.leastNormalMagnitude)))

1
Ratowniku, dziękuję za
poświęcenie

13

Możesz spróbować tego:

w loadView

_tableView.sectionHeaderHeight = 0;

Następnie

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

Powinien zostać usunięty, o ile nie masz żadnych obiektów w nagłówku ...

A jeśli chcesz mieć jakiś rozmiar nagłówka sekcji, zmień tylko zwracaną wartość.

to samo, jeśli nie usuniesz stopki sekcji.

_tableView.sectionFooterHeight = 0;

i

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

Cóż, to działa w przypadku moich problemów z widokiem tabeli w iOS7.


3

self.tableView.tableHeaderView = [UIView new];Po dodaniu należy usunąć kod

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

To właśnie footerwysokość powoduje w moim przypadku problem. Dzięki za pomoc.
pkc456

2

możesz użyć viewForHeaderInSectioni zwrócić widok o dowolnej wysokości.

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{

    int height = 30 //you can change the height 
    if(section==0)
    {
       UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, height)];

       return view;
    }
}

Nie pytam o nagłówki sekcji, ale nagłówek tabeli.
circuitlego

następnie możesz bezpośrednio przekazać A uiview do widoku nagłówka tabeli.
Divyam shukla

2

W Swift 2.0

func tableView(tableView: UITableView, estimatedHeightForHeaderInSection section: Int) -> CGFloat {

        return yourHeight
    }

2

W Swift 4

Usuń dodatkowe górne wypełnienie w zgrupowanym widoku tabeli.

Tutaj wysokość jest podawana jako minimalna wysokość nagłówka sekcji, ponieważ nie możesz podać 0, ponieważ widok tabeli przyjmie domyślny górny margines, jeśli przypisano zerową wysokość.

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

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    return UIView()
}

0

Przykład viewForHeaderInSection:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 118)];
view.backgroundColor = COLOR_DEFAULT;

NSString* key = [self.tableKeys objectAtIndex:section];
NSArray *result = (NSArray*)[self.filteredTableData objectForKey:key];
SZTicketsResult *ticketResult = [result objectAtIndex:0];

UIView *smallColoredView = [[UIView alloc] initWithFrame:CGRectMake(0, 5, 320, 3)];
smallColoredView.backgroundColor = COLOR_DEFAULT_KOSTKY;
[view addSubview:smallColoredView];

UIView *topBackgroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 8, 320, 40)];
topBackgroundView.backgroundColor = [UIColor colorWithRed:255.0/255.0 green:248.0/255.0 blue:174.0/255.0 alpha:1];
[view addSubview:topBackgroundView];

UILabel *totalWinnings = [[UILabel alloc] initWithFrame:CGRectMake(10, 8, 300, 40)];
totalWinnings.text = ticketResult.message;
totalWinnings.minimumFontSize = 10.0f;
totalWinnings.numberOfLines = 0;
totalWinnings.backgroundColor = [UIColor clearColor];
totalWinnings.font = [UIFont boldSystemFontOfSize:15.0f];
[view addSubview:totalWinnings];

UIView *bottomBackgroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 55, 320, 58)];
bottomBackgroundView.backgroundColor = [UIColor colorWithRed:255.0/255.0 green:248.0/255.0 blue:174.0/255.0 alpha:1];
[view addSubview:bottomBackgroundView];

UILabel *numberOfDraw = [[UILabel alloc] initWithFrame:CGRectMake(10, 55, 290, 58)];
numberOfDraw.text = [NSString stringWithFormat:@"sometext %@",[ticketResult.title lowercaseString]];;
numberOfDraw.minimumFontSize = 10.0f;
numberOfDraw.numberOfLines = 0;
numberOfDraw.backgroundColor = [UIColor clearColor];
numberOfDraw.font = [UIFont boldSystemFontOfSize:15.0f];
[view addSubview:numberOfDraw];

return view;
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.