Irkinosor / tispr-card-stack

Card Stack in Swift for iOS8+

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TisprCardStack

Screenshot

The tispr left/right feature. Cards UI

Ever wanted to know how to code the UI for the swipe left/right feature? • in Swift • for iOS8

please pay attention:

  • 0.2.x versions with swift 2.0
  • 0.1.x versions with swift 1.2

Installation: With tools

###CocoaPods: In your Podfile:
swift 1.2

pod "TisprCardStack"

swift 2.0

pod 'TisprCardStack', '~> 0.2.0beta1'

And in your *.swift:

import TisprCardStack

###Installation: Manual Add TisprCardStackViewCell.swift,TisprCardStackViewController.swift, TisprCardStackViewLayout.swift into your Xcode project.

Usage start

  1. Create controller 'TisprCardStackViewController' with 'TisprCardStackViewLayout' collectionViewLayout

  2. Configuration TisprCardStackViewController,

      setAnimationSpeed(0.85)
      setCardSize(size)
  1. then specify count of cards,
func numberOfCards() -> Int {}
  1. return cards by index:
card(collectionView: UICollectionView, cardForItemAtIndexPath indexPath: NSIndexPath) -> TisprCardStackViewCell {}

Additional features/options

  1. Adding a new card: How to call the animation:
func newCardWasAdded()
  1. How to configure the amount of visible cards in each stack (top and bottom):
      layout.topStackMaximumSize = 4
      layout.bottomStackMaximumSize = 30
      layout.bottomStackCardHeight = 45
  1. Changing card position: How to call the movement of a card from the top to the bottom stack and vice versa:
      moveCardUp()
      moveCardDown()
  1. You can track changing of card stack in method:
  func cardDidChangeState(cardIndex: Int)

For more detail, see the sample project.

Contact

andrei.pitsko@tispr.com

License

Apache License Version 2.0. See LICENSE.txt

About

Card Stack in Swift for iOS8+

License:Apache License 2.0


Languages

Language:Swift 93.7%Language:C++ 3.5%Language:Ruby 2.8%