0

Image

Thank you! I've already made the photos fill up the entire cell through constraints and this is the code I used to get rid of the seperator and spacing which worked well but theres still that little sliver.

cell.separatorInset=UIEdgeInsets.zero
cell.layoutMargins=UIEdgeInsets.zero
BangOperator
  • 4,377
  • 2
  • 24
  • 38
elle
  • 1

1 Answers1

0

It is a separator, and you can make it invisible:

Objective-C

self.tableView.separatorColor = [UIColor clearColor];

Swift

tableView.separatorColor = .clear
Mozahler
  • 4,958
  • 6
  • 36
  • 56