任何人都可以帮助我,iPhone中的Cell无法正常显示,它在集合视图中显示出优势。
但相同的单元格和代码在所有其他设备中都能正常工作。
func collectionView(_ collectionView: UICollectionView,layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
return CGSize(width: NIConstant.SCREEN_WIDTH, height: NIConstant.SCREEN_WIDTH)
}
答案 0 :(得分:1)
<强>分辨强>
通过在viewDidLoad方法中添加一段代码来解决问题
if #available(iOS 11.0, *) {
fullScreenCollectionView?.contentInsetAdjustmentBehavior = .always
}