問題を回避するには、以下のようにscrollToItemメソッド
の前にページングを false
に設定し、その後 true
に戻します。
self.collectionView.isPagingEnabled = false
self.collectionView.scrollToItem(at: indexPath, at: .left, animated: false)
self.collectionView.isPagingEnabled = true
Go to list of users who liked
問題を回避するには、以下のようにscrollToItemメソッド
の前にページングを false
に設定し、その後 true
に戻します。
self.collectionView.isPagingEnabled = false
self.collectionView.scrollToItem(at: indexPath, at: .left, animated: false)
self.collectionView.isPagingEnabled = true
Register as a new user and use Qiita more conveniently
Go to list of users who liked