Pages Scroller with looping support.
It mimics UIScrollView functionality with paging = YES and additionaly introduces 'looping' mode BOOL property.
See https://developer.apple.com/videos/wwdc/2011/?id=104 for nice tricks on UIScrollView by Apple.
Demo: http://youtu.be/AxZhPDLQpnw
This is iOS example project that uses PagerView component.
PagerView mimics UIScrollView component with paging mode enabled.
Plus it implements additional 'looping' feature: scrolls to the very first page after the last one.
PagerView has .delegate and .dataSource properties implemented with UITableView in mind.
- Vertical sliding. Animate swipping between pages in Vertical direction in addition to Horizontal(current) direction.
- Multiple active pages. Implement case when multiple pages are visible and should be rendered together.