if swipeAbleArea.contains(location) && !verticalCardSwiperView.isScrolling {
if let swipedCardIndex = verticalCardSwiperView.indexPathForItem(at: locationInCollectionView) {
/// The card that is swipeable inside the SwipeAbleArea.
swipedCard = verticalCardSwiperView.cellForItem(at: swipedCardIndex) as? CardCell
}
}
答案 0 :(得分:1)
我是此库(link)的创建者,您遇到的问题是由于现在已在一次提交中修复了一个错误,但是该修复尚未在CocoaPods(或主分支)。
这是修复程序的图片(如果要手动修复,需要在代码中进行哪些更改):
您还可以使用以下行来指向Podfile中的development
分支:
pod 'VerticalCardSwiper', :git => 'https://github.com/JoniVR/VerticalCardSwiper.git', :branch => 'development'
希望这会有所帮助:)
编辑:该修复程序已在Cocoapods上发布。