手机在iPhone X中无法正常显示

时间:2018-02-06 12:17:29

标签: ios swift uicollectionviewcell iphone-x

任何人都可以帮助我,iPhone中的Cell无法正常显示,它在集合视图中显示出优势。

但相同的单元格和代码在所有其他设备中都能正常工作。

 func collectionView(_ collectionView: UICollectionView,layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
   return CGSize(width: NIConstant.SCREEN_WIDTH, height: NIConstant.SCREEN_WIDTH)
 }

enter image description here

1 个答案:

答案 0 :(得分:1)

<强>分辨

通过在viewDidLoad方法中添加一段代码来解决问题

if #available(iOS 11.0, *) {
   fullScreenCollectionView?.contentInsetAdjustmentBehavior = .always
 }