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?
please use below method adjust cell height;
- (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath { return 78; }
Comments
Post a Comment