SwipeView
SwipeView copied to clipboard
Auto Scrolling Page By Page
Is there a way we can implement an auto scroll that scrolls page by page instead of a ticker style scroll?
and maybe specify NSTimeInterval for when to trigger next page
Meanwhile you can do it yourself pretty easily.
[NSTimer scheduledTimerWithTimeInterval:5.0 target:self selector:@selector(onTimer) userInfo:nil repeats:YES];
- (void) onTimer
{
[_swipeView scrollByNumberOfItems:1 duration:0.5];
}