Popularity
6.7
Stable
Activity
0.0
Stable
850
28
76

Code Quality Rank: L5
Programming language: Swift
License: Apache License 2.0
Tags: UI    
Latest version: v3.0.0

TisprCardStack alternatives and similar libraries

Based on the "UI" category.
Alternatively, view TisprCardStack alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TisprCardStack or a related project?

Add another 'UI' Library

README

Swipable, customizable card stack view, Tinder like card stack view based on UICollectionView. Cards UI

Сocoapods installation

Add in your Podfile:

pod 'TisprCardStack'

please pay attention:

  • 2.x.x versions with swift 4.0
  • 1.x.x versions with swift 3.0

And in your *.swift:

import TisprCardStack

Manual installation

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 {}
    
  2. 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
    
  2. Changing card position: How to call the movement of a card from the top to the bottom stack and vice versa:

        moveCardUp()
        moveCardDown()
    
  3. Delete card:

        deleteCard
    
  4. You can track changing of card stack in method:

    func cardDidChangeState(cardIndex: Int)
    

For more detail, see the sample project.

Contact

[email protected], [email protected]

License

Apache License Version 2.0. See LICENSE.txt


*Note that all licence references and agreements mentioned in the TisprCardStack README section above are relevant to that project's source code only.