Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (17 loc) · 957 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 957 Bytes

ConceptScroll

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.

TODO:

  1. Vertical sliding. Animate swipping between pages in Vertical direction in addition to Horizontal(current) direction.
  2. Multiple active pages. Implement case when multiple pages are visible and should be rendered together.