iOS7: UICollectionView appearing under UINavigationBar

后端 未结 5 1148
囚心锁ツ
囚心锁ツ 2021-02-01 06:56

I\'ve been building on iOS 7 for a while now but I\'ve yet to get this solved, I have a number of views with autolayout enabled that were created in Storyboard and are displayed

5条回答
  •  一整个雨季
    2021-02-01 07:15

    I had this problem after ios 11, just set the contentInsetAdjustmentBehavior of UICollectionView to never:

    self.collectionView.contentInsetAdjustmentBehavior = .never
    

提交回复
热议问题