반응형
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로 설정하면 됩니다.
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] 정규식(이메일, 아이디, 닉네임, 패스워드, 전화번호) (0) | 2022.07.12 |
---|---|
[iOS, Swift] 코드로 Custom Color 지정하기(UIColor Extension) (0) | 2022.07.06 |
[iOS, Swift] NotificationCenter Example (0) | 2022.07.06 |
[iOS, Swift] 스크롤 뷰 만들기 programmatic (0) | 2022.06.22 |
[iOS, Swift] 두개 이상의 뷰에 tapGesture 추가하기 (0) | 2022.06.22 |