浏览代码

禁用自动循环

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