Git Product home page Git Product logo

Comments (6)

modocache avatar modocache commented on July 17, 2024

Three cards is not much different than the two-card example app in Examples/LikedOrNope. What have you tried? What exactly did not work?

from mdcswipetochoose.

frank0ch0a avatar frank0ch0a commented on July 17, 2024

I configured frontCardView,MiddleCardView and backCardView, then configured middleCard like example likeornope backcard, and the last one frame of backcard use frame parameters of middlecard, when I run the app , it show me three cards, but when I swipe to choose , only show me one card and do not show me three again , thanks

from mdcswipetochoose.

modocache avatar modocache commented on July 17, 2024

In the sample app, when a swipe is completed, the "back card" is moved to the front:

self.frontCardView = self.backCardView;

Then, a new back card is created:

self.backCardView = [self popPersonViewWithFrame:[self backCardViewFrame]];

If you want three cards, you just need to do the same with three cards. Let's say they're called self.frontCardView, self.middleCardView, and self.backCardView:

// Move the middle and back cards to the front and middle
self.frontCardView = self.middleCardView;
self.middleCardView = self.backCardView;

// Create a new back card
self.backCardView = [self popPersonViewWithFrame:[self backCardViewFrame]];

There might be a better way to do this, perhaps by using UICollectionView, but if you want to imitate the example app, I think this is the simplest approach.

Hope that helps!

from mdcswipetochoose.

frank0ch0a avatar frank0ch0a commented on July 17, 2024

I made your approach and it works,but using pop method to create middleCardView and backcardView, and I will have to adjust the y origin in middle card afterwards to finished the swipe.thanks again!

from mdcswipetochoose.

modocache avatar modocache commented on July 17, 2024

My pleasure! Good luck with your app!

from mdcswipetochoose.

dorinsimina avatar dorinsimina commented on July 17, 2024

@frank0ch0a can you give me more details on how you implemented 3 cards. Thanks in advance.

from mdcswipetochoose.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.