ZLSwipeableView
ZLSwipeableView copied to clipboard
how to limit care number ?????????? who can tell me ............
Not sure if this is what you're looking for since you didn't really give any info but try this...
swipeableView.numberOfActiveViews = 15
In the file "ZLSwipeableView.m" go to method - (void)swipeView:(UIView *)view location:(CGPoint)location directionVector:(CGVector)directionVector { and comment the line [self loadViewsIfNeeded];
Obviously they must have the limit of active views.
swipeableView.numberOfActiveViews = 7
BeHappy();