uitableview - different height of section header in grouped tableview -
got default grouped style table left screenshot in below, looks having different height of section header, top first 69 px measured, while rest 40 px.
why? supposed same height, aren't they?
so i'd make them method of tableview:heightforheaderinsection:
, return 40
but.....it looks more worse! amplifies heights below middle one, if putting section title on...like below right pic.
i wanna have same height of section header. how make work?
yea strange. able make them adjusting height of section footers instead:
- (cgfloat)tableview:(uitableview *)tableview heightforfooterinsection:(nsinteger)section { return 24; }
Comments
Post a Comment