0
関数を呼び出し、 'none'が利用できないというエラーを受け取っているときに、collectionViewに水平方向にスクロールしようとしています:空のオプションセットを構築するために[]を使用します。 ..前もって感謝します!水平スクロールコレクション問題を表示
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