ios - Too much space between cells -


i'm having trouble reducing spacing between cells, want 1 px. inside cell have stackview fills entire cell, both set 70.

i can accomplish want adding negative constrains, cells gets big, want 70. set cell 70 in custom cell class

self.frame.size.height = 70 

and stackview set same. don't see why amount of spacing between cells?

enter image description here

please use below method adjust cell height;

- (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath {      return 78; } 

Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -