Swift - UICollectionView fixing center when rotate/landscape 방법
임시 메모 글입니다.(나중에 다듬을거예요..) 아래 코드를 이용하면 콜렉션뷰의 가로/세로 보기 전환 시 편하게 진행중이던 index 에 고정 됩니다. class RootPreviewVC: UIViewController { private lazy var collectionView: UICollectionView = { let collectionView = UICollectionView(frame: .zero, collectionViewLayout: collectionViewLayout) ... return collectionView }() private var prevIndexPathAtCenter: IndexPath? private var currentIndexPath: IndexPath? { let c..
2021.12.29