I am seeing a very thin white line in between my collection view cells, even though I have set section insets to 0 and defined the collection view cell to be self.view.bounds.size.width/2
(there should be two cells per row next to each other).
(You may have to open the image in full-view to see the white line highlighted in blue).
This is visible on a physical iPhone X device.
minimumInteritemSpacing
? – SwamperminimumInteritemSpacing
is0
– TripodminimumInteritemSpacing == 0
, I assume that the line is from cell. Can you show your code how to configure cell layout and collection layout? – SwamperminimumInteritemSpacing = CGFLOAT_MIN;
swift:minimumInteritemSpacing =CGFloat.leastNormalMagnitude
– Shermy