Made with β€οΈ by Mac Gallagher
π‘ 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
To run the example project, clone the repo and run the ShuffleExample
target.
-
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:class SampleCard: SwipeCard { override var swipeDirections { return [.left, .right] } init(image: UIImage) { content = UIImageView(image: image) leftOverlay = UIView() rightOverlay = UIView() leftoverlay.backgroundColor = .green rightOverlay.backgroundColor = .red } }
-
Initialize your card data and place a
SwipeCardStack
on your view:class ViewController: UIViewController { let cardStack = SwipeCardStack() let cardImages = [ UIImage(named: "cardImage1"), UIImage(named: "cardImage2"), UIImage(named: "cardImage3") ] override func viewDidLoad() { super.viewDidLoad() view.addSubview(cardStack) cardStack.frame = view.safeAreaLayoutGuide .bounds.insetBy(dx: 10, dy: 50) } }
-
Conform your class to the
SwipeCardStackDataSource
protocol and set your card stack'sdataSource
:func numberOfCards(in cardStack: SwipeCardStack) -> Int { return cardImages.count } func cardStack(_ cardStack: SwipeCardStack, cardForIndexAt index: Int) -> SwipeCard { return SampleCard(image: cardImages[index]) }
cardStack.dataSource = self
-
Conform to the
SwipeCardStackDelegate
protocol to subscribe to any of the following events:func didSwipeAllCards(_ cardStack: SwipeCardStack) func cardStack(_ cardStack: SwipeCardStack, didSwipeCardAt index: Int, with direction: SwipeDirection) func cardStack(_ cardStack: SwipeCardStack, didUndoCardAt index: Int, from direction: SwipeDirection) func cardStack(_ cardStack: SwipeCardStack, didSelectCardAt index: Int)
Note:
didSwipeCardAt
anddidSwipeAllCards
are called regardless if a card is swiped programmatically or by the user.
The following methods are available on SwipeCardStack
.
Performs a swipe programmatically in the given direction.
func swipe(_ direction: SwipeDirection, animated: Bool)
Restores the card stack to its state before the last swipe.
func undoLastSwipe(animated: Bool)
Shifts the card stack's cards by the given distance. Any swiped cards are skipped over.
func shift(withDistance distance: Int = 1, animated: Bool)
For more advanced usage, including
visit the document here.
Shuffle is available through CocoaPods. To install it, simply add the following line to your Podfile
:
pod 'Shuffle-iOS'
Shuffle is available through Carthage. To install it, simply add the following line to your Cartfile:
github "mac-gallagher/Shuffle"
MultiProgressView is available through Swift PM. To install it, simply add the package as a dependency in Package.swift
:
dependencies: [
.package(url: "https://github.com/mac-gallagher/Shuffle.git", from: "0.1.0"),
]
Download and drop the Shuffle
directory into your project.
- iOS 9.0+
- Xcode 10.2+
- Swift 5.0+
We love to hear about apps that use Shuffle - feel free to submit a pull request and share yours here!
Made with β€οΈ by Mac Gallagher
(Graphic designed by Mazen Ghani)