An open API service indexing awesome lists of open source software.

https://github.com/genkernel/conceptscroll

Use UIPageViewController instead. This is an old control that implements horizontal pages scrolling with looping support. (aka UIScrollView with looping mode). It was used before UIPageViewController was introduced.
https://github.com/genkernel/conceptscroll

ios scroll

Last synced: 6 months ago
JSON representation

Use UIPageViewController instead. This is an old control that implements horizontal pages scrolling with looping support. (aka UIScrollView with looping mode). It was used before UIPageViewController was introduced.

Awesome Lists containing this project

README

          

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.