SwipeView icon indicating copy to clipboard operation
SwipeView copied to clipboard

Auto Scrolling Page By Page

Open nagendran-n opened this issue 10 years ago • 2 comments

Is there a way we can implement an auto scroll that scrolls page by page instead of a ticker style scroll?

nagendran-n avatar Aug 18 '14 17:08 nagendran-n

and maybe specify NSTimeInterval for when to trigger next page

ninokierulf avatar Oct 17 '14 01:10 ninokierulf

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];    
}

pahnev avatar Dec 11 '14 17:12 pahnev