我的应用程序中有一个进度条,下面显示的是mdel阵列中的卡片,可像火种应用程序一样滑动。因此,当我滑动第一张卡片时,进度栏应根据其增加,然后对于第二张卡片,其进度栏应增加,依此类推
答案 0 :(得分:0)
现在您提到您正在使用ZLSwipeableViewSwift,请在didEnd回调中将进度条值设置为模型数组显示的视图计数。
swipeableView.didEnd = {view, location in
self.progressViewBar.progress = 1.0 * Float(self.swipeableView.numberOfActiveView) / Float(self.wordsData.count)
print("Did end swiping view at location: \(location)")
}