Fix a prefetching issue
This commit is contained in:
parent
1e1310f14d
commit
fa7b98e970
|
|
@ -55,6 +55,9 @@ class FSPagerViewCollectionView: UICollectionView {
|
|||
self.decelerationRate = UIScrollViewDecelerationRateFast
|
||||
self.showsVerticalScrollIndicator = false
|
||||
self.showsHorizontalScrollIndicator = false
|
||||
if #available(iOS 10.0, *) {
|
||||
self.isPrefetchingEnabled = false
|
||||
}
|
||||
#if !os(tvOS)
|
||||
self.scrollsToTop = false
|
||||
self.isPagingEnabled = false
|
||||
|
|
|
|||
Loading…
Reference in New Issue