0
함수를 호출하고 'none'을 사용할 수 없으면 컬렉션 뷰에 가로로 스크롤하려고합니다. []을 사용하여 빈 옵션 세트를 구성하십시오. 여기에 무엇이 잘못되었는지 확실하지 않습니다. .. 미리 감사드립니다!가로 스크롤링 컬렉션 문제보기
func handleSearch() {
scrollToMenuIndex(menuIndex: 2)
}
func scrollToMenuIndex(menuIndex: Int) {
let indexPath = NSIndexPath(item: menuIndex, section: 0)
collectionView?.scrollToItem(at: indexPath as IndexPath, at: .none, animated: true)
}
'UICollectionViewScrollPosition'에 대한 설명서를 읽으십시오. 'none' 값의 부족에 유의하십시오. – rmaddy