I'm writing a card game for iOS/AppleTV, I have all the cards and other logics pretty much there. But I am stuck when it comes to displaying cards on the screen.
The cards need to be lined up one after the other; so I figure a collection view is the best way to do this; its horizontal; it sorts out the distance and you can use autolayout to position it correctly.
But I am not sure about the following
I want a deck of cards on the screen, which is not part of the collectionView.
I want to animate cards, one at a time going from the deck to each slot of the collectionView (lets say it has 6 slots) the cards will be face down.
Once this is done, the cards will then animate from left to right to flip them face up.
I am wondering if its possible to animate something outside of the collection view into a collection view -- or even if a collection view is the best way to display, render and handle a row of cards?
Many thanks