Shuffle
A multi-directional card swiping library inspired by Tinder.
Features
? Advanced swipe recognition based on velocity and card position
? Manual and programmatic actions
? Smooth card overlay view transitions
? Fluid and customizable animations
? Dynamic card loading using data source pattern
Example
To run the example project, clone the repo and run the ShuffleExample
target.
Basic Usage
-
Create your own card by subclassing
SwipeCard
. The card below displays an image, can be swiped left or right, and has overlay views for both directions: -
Initialize your card data and place a
SwipeCardStack
on your view: -
Conform your class to the
SwipeCardStackDataSource
protocol and set your card stack'sdataSource
: -
Conform to the
SwipeCardStackDelegate
protocol to subscribe to any of the following events:Note:
didSwipeCardAt
anddidSwipeAllCards
are called regardless if a card is swiped programmatically or by the user.
Card Actions
The following methods are available on SwipeCardStack
.
Swipe
Performs a swipe programmatically in the given direction.
Undo
Restores the card stack to its state before the last swipe.
Shift
Shifts the card stack's cards by the given distance. Any swiped cards are skipped over.
Installation
CocoaPods
Shuffle is available through CocoaPods. To install it, simply add the following line to your Podfile
:
pod 'Shuffle-iOS'
Carthage
Shuffle is available through Carthage. To install it, simply add the following line to your Cartfile:
github "mac-gallagher/Shuffle"
Swift Package Manager
MultiProgressView is available through Swift PM. To install it, simply add the package as a dependency in Package.swift
:
Manual
Download and drop the Shuffle
directory into your project.
Requirements
- iOS 9.0+
- Xcode 10.2+
- Swift 5.0+