今天在項(xiàng)目中遇到一個(gè)奇怪的問題,在IPhone12 max 14.1上 調(diào)用 scrollToItem 無效,而且目前發(fā)現(xiàn)只在這個(gè)機(jī)型上無效,覺得很奇怪,查了下原因:可能是跟 minimumLineSpacing 和 isPagingEnabled = true 有關(guān)系,
解決方案:
ollectionView.isPagingEnabled = false
collectionView.scrollToItem(at: IndexPath(item: selectIndex, section: 0), at: .centeredVertically, animated: false)
collectionView.isPagingEnabled = true
在滾動(dòng)的前后把 isPagingEnabled = true先設(shè)置為false在設(shè)置為true這樣既可