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.

enter image description here

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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -