Questions tagged [koloda]
23 questions
4
votes
1 answer
How to animate a custom view to a custom view
I'm building a flashcard-like app, and I'm using a library KolodaView: https://github.com/Yalantis/Koloda
I have this extension which returns a UIView as the front of a flashcard:
extension StudyViewController: KolodaViewDataSource {
func…

Bright
- 5,699
- 2
- 50
- 72
2
votes
0 answers
Loading Information onto XIB files from Firebase with Koloda View
I just started programming with Swift a few months ago so to help me learn, I'm working on a project similar to Tinder using Koloda View. I'm using Firebase as my backend. The code I have included below works fine with 6 images assets of cards but…

A. Albert
- 65
- 8
2
votes
0 answers
How to animate expand / collapse UIView
I'm building a tinder-like app, and I'm using a library KolodaView: https://github.com/Yalantis/Koloda
In the library they have functionality setup so when you tab the UIView it triggers an action. At the moment its setup to open up a URL. As seen…

Hallam Ager
- 21
- 1
1
vote
1 answer
Initial cards are the same when using UICollectionView Yalantis/Koloda
I'm using this library and I am able to display my data from Firebase on to the cards. However the initial cards (3 default) are all the same. Then once I swipe them I can see the next results. This seems to be only the case when I am displaying a…

Chace
- 561
- 10
- 28
1
vote
0 answers
Koloda Tinder Swiping Swift 3.0
It was working well on the swift 2.2 version but when upgraded to the 3.0 branch I had issues with my datasource and delegate being alloc to the same part of memory. Screenshot is attached to show issue. Any reasons to why this is happening?

Maty Brennan
- 51
- 1
- 3
1
vote
1 answer
Terminating app due to uncaught exception 'NSInternalInconsistencyException' with name 'OverlayView'
I intend to use a custom view Koloda in my newly-created swift xcode project via Podfile. After pod install, creating KolodaView in Main.storyboard and building successfully, it complains exception when running as follows:
2016-08-20 09:44:38.918…

KAs
- 1,818
- 4
- 19
- 37
0
votes
0 answers
Implementing Koloda-android
I am working on an app in android studio, i've found a library called Koloda for the implementation i've followed this video. But when I come to 9:31 my android studio cannot find the class Koloda.
This is my settings.gradle
pluginManagement {
…

Gijs Kruize
- 1
- 2
0
votes
0 answers
1 HomeViewController.actnShare() Testflight crash
I had an app crash from a test flight user. I cannot replicate the issue and was having trouble narrowing it down. Any help or suggestions is appreciated!
Here is where the issue is according to xcode:
HomeViewController.actnShare()
@objc func…

Thomas Valenzuela
- 71
- 2
0
votes
0 answers
How to delete a UIView (KolodaView) when dragged view touch Cross Button?
I am using Koloda Library from there https://github.com/Yalantis/Koloda
I have modify the default project according to my need.
Here is my current screen image .
Now I want to delete a UIView (kolodaView) when the card (kolodaView) dragged to cross…

Jawad Ali
- 81
- 1
- 8
0
votes
0 answers
How do I return a UIView in a Koloda method when waiting for image from API?
I am attempting to create a Tinder for Movies app where the movies are loaded in using The Movie Database API and I am using Koloda pod for the card swiping features. I have run into a problem where I have to implement a Koloda datasource method…

user844288
- 17
- 1
- 6
0
votes
0 answers
How to add like dislike image on cards while swapping cards Koloda , swift
I am using Koloda for tinder like application. I successfully created by cards with given example:-
func kolodaNumberOfCards(_ koloda:KolodaView) -> Int {
return 6
}
func kolodaSpeedThatCardShouldDrag(_ koloda: KolodaView) -> DragSpeed {
…

user3120670
- 71
- 6
0
votes
1 answer
How to send Swipe Action to UIView in Swift
I am trying to clone Tinder, have done with swipe left (dislike person) and right (like person) by Yalantis/Koloda (https://github.com/Yalantis/Koloda). I also have two images for button like/dislike. I wish my mainView will swipe Left/Right when I…

Tuan Ho Si
- 25
- 5
0
votes
0 answers
Issue programmatically instantiating custom xib view (in a Koloda card function)
Background:
I am trying to create a Tinder-esque user interface that loads user profile's into stacked cards using the Koloda library - a Tinder card swiping library based off UITableView. In the Koloda viewForCardAt() delegate function where I am…

Aalok Borkar
- 95
- 1
- 7
0
votes
1 answer
didSwipedCardAtIndex Koloda pod didn't work
Good afternoon guys!
No one can help me - I have this problem on the pod 'Koloda', '4.6' version and I don’t know what to do.
didSwipeCardAtIndex not called by delegate. Previously, on swift 2 everything worked fine. Now Swift 3 & 4 Sample didn't…

Pavel
- 11
- 2
0
votes
0 answers
Delaying Data Source methods after remote images are downloaded
I'm using this library https://github.com/Yalantis/Koloda
Basically this is a pod that helps me implement a Tinder-like swiping interface.
This pod has a Data Source method called kolodaNumberOfCards(_ koloda: KolodaView) which requires you to…

Seng Wee
- 534
- 9
- 20