3

伙计们,我正在 ios-11 中迁移我的应用程序,但我无法让我的 UICollectionView 全屏显示。所以,我像我们一样浏览了 StackOverflow,发现了这两个主题:

  1. 取消选中 superView 的 Safe Area Relative Margins

  2. 将 de Content Inset 设置为 None 而不是 Automatic

这两个技巧对我所有的 UISrollViews 都非常有效

和我项目中的 UITableViews,但不适用于 UICollectionView。

你们有什么想法吗?谢谢。

iPhone X iPhone 8

4

1 回答 1

1

要更改安全区域的应用方式,请修改 contentInsetAdjustmentBehavior 属性。

collectionView.contentInsetAdjustmentBehavior = .never
于 2017-11-27T09:27:36.720 回答