EEYatHo 앱 깎는 이야기

Swift ) CollectionView로 화면을 채울 때 주의사항 - EEYatHo iOS 본문

iOS, Swift

Swift ) CollectionView로 화면을 채울 때 주의사항 - EEYatHo iOS

EEYatHo 2021. 6. 14. 14:57
반응형

 

https://stackoverflow.com/questions/46481858/full-screen-uicollectionviewcell-issue-on-iphone-x-in-landscape

 

Full-screen UICollectionViewCell issue on iPhone X in landscape

In my app, I present a view controller modally, and this view controller contains a UICollectionView that fills the superview. Each cell in the collection view needs to be full-screen - the same si...

stackoverflow.com

 

collectionViewCell 이 화면에 딱 맞도록 정교하게 설교해놨는데 자꾸 safeArea에서 셀이 안보이는 겁니다.

 

찾아보니, iOS 11 부터는 셀이 safeArea를 침범하면 contentSize를 멋대로 조절하곤 합니다.

 

해당 옵션을 끌 수 있습니다.

cv.contentInsetAdjustmentBehavior = .never

 

Comments