Inilah implementasi saya di Swift 5 untuk paging berbasis sel vertikal :
override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint, withScrollingVelocity velocity: CGPoint) -> CGPoint {
guard let collectionView = self.collectionView else {
let latestOffset = super.targetContentOffset(forProposedContentOffset: proposedContentOffset, withScrollingVelocity: velocity)
return latestOffset
}
// Page height used for estimating and calculating paging.
let pageHeight = self.itemSize.height + self.minimumLineSpacing
// Make an estimation of the current page position.
let approximatePage = collectionView.contentOffset.y/pageHeight
// Determine the current page based on velocity.
let currentPage = velocity.y == 0 ? round(approximatePage) : (velocity.y < 0.0 ? floor(approximatePage) : ceil(approximatePage))
// Create custom flickVelocity.
let flickVelocity = velocity.y * 0.3
// Check how many pages the user flicked, if <= 1 then flickedPages should return 0.
let flickedPages = (abs(round(flickVelocity)) <= 1) ? 0 : round(flickVelocity)
let newVerticalOffset = ((currentPage + flickedPages) * pageHeight) - collectionView.contentInset.top
return CGPoint(x: proposedContentOffset.x, y: newVerticalOffset)
}
Beberapa catatan:
- Tidak ada kesalahan
- ATUR HALAMAN KE SALAH ! (jika tidak ini tidak akan berhasil)
- Memungkinkan Anda mengatur flickvelocity Anda sendiri dengan mudah.
- Jika ada sesuatu yang masih tidak berfungsi setelah mencoba ini, periksa apakah Anda
itemSize
benar - benar cocok dengan ukuran item karena itu sering menjadi masalah, terutama saat menggunakan collectionView(_:layout:sizeForItemAt:)
, gunakan variabel khusus dengan itemSize sebagai gantinya.
- Ini bekerja paling baik saat Anda menyetel
self.collectionView.decelerationRate = UIScrollView.DecelerationRate.fast
.
Ini adalah versi horizontal (belum mengujinya secara menyeluruh jadi mohon maafkan jika ada kesalahan):
override func targetContentOffset(forProposedContentOffset proposedContentOffset: CGPoint, withScrollingVelocity velocity: CGPoint) -> CGPoint {
guard let collectionView = self.collectionView else {
let latestOffset = super.targetContentOffset(forProposedContentOffset: proposedContentOffset, withScrollingVelocity: velocity)
return latestOffset
}
// Page width used for estimating and calculating paging.
let pageWidth = self.itemSize.width + self.minimumInteritemSpacing
// Make an estimation of the current page position.
let approximatePage = collectionView.contentOffset.x/pageWidth
// Determine the current page based on velocity.
let currentPage = velocity.x == 0 ? round(approximatePage) : (velocity.x < 0.0 ? floor(approximatePage) : ceil(approximatePage))
// Create custom flickVelocity.
let flickVelocity = velocity.x * 0.3
// Check how many pages the user flicked, if <= 1 then flickedPages should return 0.
let flickedPages = (abs(round(flickVelocity)) <= 1) ? 0 : round(flickVelocity)
// Calculate newHorizontalOffset.
let newHorizontalOffset = ((currentPage + flickedPages) * pageWidth) - collectionView.contentInset.left
return CGPoint(x: newHorizontalOffset, y: proposedContentOffset.y)
}
Kode ini didasarkan pada kode yang saya gunakan dalam proyek pribadi saya, Anda dapat memeriksanya di sini dengan mengunduhnya dan menjalankan target Contoh.