列出UICollectionView时是否有办法防止边框重叠?

时间:2019-06-27 11:39:19

标签: ios swift uicollectionview

当像UICollectionView一样显示UITableView时,单元格之间的边界将重叠显示。 (例如,如果将单元格的边界设置为1px,则单元格之间的边界将变为2px)

通过如下设置UITableView,看起来像UICollectionViewFlowLayout

let cellLayout = UICollectionViewFlowLayout()
cellLayout.itemSize = CGSize(width: UIScreen.main.bounds.width, height: 50)
cellLayout.minimumLineSpacing = 0
cellLayout.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)

单元格之间的边框重叠显示

0 个答案:

没有答案