-1

Using UIPageViewController as container is pretty straightforward, however, it is extremely hacky to disable its bounce effect. I need help on creating a custom container ViewController (similar to UIPageVC) using UIScrollView and ViewController containment API. Is there any existing repo on github?

thx

user1727328
  • 173
  • 1
  • 7

1 Answers1

0

I think you can use UICollectionView. You can set up it without bouncing. You can do it with setting alwaysBounceVertical and alwaysBounceHorisontal properties. Read here and here about it. Also UICollectionView is very easy to use and customize. I don't think you need use some external libs or repos.

Community
  • 1
  • 1
Serhii Londar
  • 231
  • 1
  • 18
  • I guess you misunderstand my question or i interpret it inaccurately. The thing im looking for is a custom container (similar to UIPageViewController) that manages array of child controllers. – user1727328 Mar 23 '15 at 22:10