Dikey hücre tabanlı sayfalama için Swift 5'teki uygulamam :
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)
}
Bazı notlar:
- Aksaklık yapmaz
- SAYFALAMAYI YANLIŞ OLARAK AYARLAYIN ! (aksi takdirde bu işe yaramaz)
- Kendi hareket hızınızı kolayca ayarlamanıza olanak tanır .
- Bunu denedikten sonra hala bir şey çalışmıyorsa
itemSize
, öğenin boyutuyla gerçekten eşleşip eşleşmediğini kontrol edin, çünkü bu genellikle bir sorundur, özellikle kullanırken collectionView(_:layout:sizeForItemAt:)
, bunun yerine itemSize ile özel bir değişken kullanın.
- Bu, ayarladığınızda en iyi şekilde çalışır
self.collectionView.decelerationRate = UIScrollView.DecelerationRate.fast
.
İşte yatay bir versiyon (tam olarak test etmedik, bu yüzden lütfen hataları affedin):
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)
}
Bu kod, kişisel projemde kullandığım koda dayanmaktadır, buradan indirip Örnek hedefi çalıştırarak kontrol edebilirsiniz .