我想在UIImageView
我的每个 custom 上设置一个UITableViewCell
,但是我希望它看起来像所有图像都连接在一起。就目前而言,我已经移动了单元格分隔符,以便它不会切到图像的顶部,但是我现在需要找到一种方法来阻止它在每个单元格之间占用几个像素。
最后,我想让以下黑线无缝连接,但仍保留右侧的分隔符。我尝试了以下使用偏移量的逻辑,但这似乎不起作用。
// This seems to shift the separator to the right which is good, however I want to get rid of the white line completely...
self.separatorInset = UIEdgeInsets(top: -1, left: 75, bottom: 0, right: 0)
有人对我如何实现这一目标有任何想法吗?