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,238
  • 2
  • 22
  • 37
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,307
  • 6
  • 29
  • 49