我在我的UICollectionView中使用下面的方法来拉伸/填充单元格,但似乎它限制了边距。它像10微米的边缘一样停下来。我基本上想要将单元格的约束设置为“0”和“0”以完全填充宽度而不是约束到边距。
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAt indexPath: IndexPath) -> CGSize {
let customHeight = CGFloat(116)
return CGSize(width: collectionView.frame.size.width, height: customHeight)