فهرست منبع

禁用自动循环

jsonwang 4 سال پیش
والد
کامیت
2062cd482e
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      MusicVideoPlus/MusicVideoPlus/Classes/Modules/Home/Views/Banner/MVBanner.swift

+ 4 - 1
MusicVideoPlus/MusicVideoPlus/Classes/Modules/Home/Views/Banner/MVBanner.swift

@@ -250,7 +250,10 @@ extension MVBanner: UIScrollViewDelegate {
     }
     public func scrollViewWillBeginDecelerating(_ scrollView: UIScrollView) {
         scrollView.isPagingEnabled = false
-        self.scrollToItem(at: self.currentIndex, animated: true)
+        if(self.currentIndex >= 0 && self.currentIndex <  self.dataSource?.numberOfItems() ?? 0){
+            self.scrollToItem(at: self.currentIndex, animated: true)
+        }
+
     }
     public func scrollViewDidEndScrollingAnimation(_ scrollView: UIScrollView) {
         scrollView.isPagingEnabled = false