我的宽度/高度UICollectionView
匹配所有可用空间。
我想在一行中显示两个单元格(两列)
所以一个单元格的宽度应该是UICollectionView
( collectionView.frame.width / 2
)的一半宽度
所以我以编程方式改变单元格的宽度UICollectionViewDelegateFlowLayout
:
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: collectionView.frame.width / 2.0, height: 150)
}
但单元格的视觉宽度远大于collectionView.frame.width / 2.0
(在 iPhone SE 模拟器上测试)
所以它需要超过屏幕的半角空间
在这里,我打印了有关尺寸的信息:
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdentifier, for: indexPath)
print("didSelectItemAt \(cell.frame.width), table width: \(collectionView.frame.width), item calc width: \(collectionView.frame.width / 2)")
}
didSelectItemAt 单元格宽度 187.5,表格宽度:375.0,半宽度:187.5
为什么会这样?
边距也有问题,但首先我必须解决这个问题
更新
虽然它适用于 iPhone 6s 模拟器(我编辑图像以将两个项目放在第一行以检查它们是否适合):
那么 iPhone SE 有什么问题呢?
我不想发现其他 iPhone 或 iPad 也可能存在同样的问题