티스토리 뷰

[Swift] collectionView scrollToTop 콜렉션뷰 스크롤 최상단으로 이동하기 xcode

 

collectionView를 사용하다보면 스크롤을 최상단으로 이동시켜야 하는 상황이 생긴다.

여러가지 코드를 사용 할 수 있다.

아래 코드중 상황에 맞게 사용하면 된다.

 

상황별 코드 1

collectionView.scrollToItem(at: IndexPath(item: -1, section: 0), at: .init(rawValue: 0), animated: true)

 

상황별 코드 2

collectionView.scrollToItem(at: IndexPath(item: 0, section: 0), at: .top, animated: true)

 

상황별 코드 3 (가로형 스크롤)

collectionView.scrollToItem(at: IndexPath(item: 0, section: 0), at: .left, animated: true)
댓글