iOS/코드조각

[iOS, Swift] CollectionView 초기 position 변경하기

검은참깨두유vm 2022. 7. 6. 09:36
반응형

iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.

 

customCollectionView.isPagingEnabled = false
customCollectionView.scrollToItem(at: IndexPath(item: 59, section: 0), at: .bottom, animated: false)
customCollectionView.isPagingEnabled = true

collectionView 초기 아이템을 설정해주는 예제입니다.

isPagingEnabled 설정이 true로 되어있다면, scrollToItem 메소드가 안 먹는 버그가 있어

isPagingEnabled 설정을 false로 바꾸어주었다가, 끝난 뒤 true로 설정하면 됩니다.

반응형