DMLazyScrollView
DMLazyScrollView copied to clipboard
DMLazyScrollView direction is not right
Hi;
There is a small problem in the code. If I want to scroll backward, it cannot slide. - (void) setPage:(NSInteger) newIndex animated:(BOOL) animated { [self setPage:newIndex DMLazyScrollViewTransitionForward animated:animated]; }
should be changed to
- (void) setPage:(NSInteger) newIndex animated:(BOOL) animated {
[self setPage:newIndex transition:DMLazyScrollViewDirectionHorizontal animated:animated];
}