didSwipedCardAtIndex Модуль "Колода" не работает
Добрый день, ребята!
Никто не может мне помочь - у меня есть эта проблема на модуле "Колода", версия 4.6, и я не знаю, что делать.
didSwipeCardAtIndex не вызывается делегатом. Раньше на swift 2 все работало нормально. Теперь образец Swift 3 и 4 тоже не вызывал func... https://github.com/Yalantis/Koloda
func koloda(koloda: KolodaView, didSwipedCardAtIndex index: UInt, inDirection direction: SwipeResultDirection) {
//
}
Спасибо за все
0 ответов
Вы можете использовать эту функцию в Swift 4
func koloda(koloda: KolodaView, shouldSwipeCardAtIndex index: UInt, inDirection direction: SwipeResultDirection) -> Bool {
if direction == SwipeResultDirection.left || direction == SwipeResultDirection.right {
return true
}
return false
}