zhxnlai/ZLSwipeableView

How can i limit the view count?

Opened this issue · 4 comments

lets say i want 10 cards in my app but these cards seems unlimited how can i limit cards to only 10.

any response??

self.swipeableView.numberOfActiveViews = 10;

You should read the header files and the sample project :)

I'm having the same issue 😟

I have 8 elements in an Array and i set the number of elements using:

self.cardsStackView.numberOfActiveView = UInt(self.candidatesArray.count)

After that, i use a for sentence to create the views:

for candidate in self.candidatesArray { self.cardsStackView.nextView = {return self.nextCardView()} }

The problem is that the information of the firsts 8 cards is the same (it should be different for each card) and the stack seems to be infinite.

Thanks and best regards!

Duplicate of #89 Check the response