uiscrollview
UIScrollView – with paging enabled, can I “change” the page width?
Alexander Repty just blogged about this very topic: http://blog.proculo.de/archives/180-Paging-enabled-UIScrollView-With-Previews.html. Short answer: it’s not as simple as just changing the width of the ‘page’, but it’s not too hard.
Tell When a UIPageViewController is Scrolling (for Parallax Scrolling of an Image)
for (UIView *view in self.pageViewController.view.subviews) { if ([view isKindOfClass:[UIScrollView class]]) { [(UIScrollView *)view setDelegate:self]; } } this gives you access to all standard scroll view API methods. And this is not using private Apple API’s. I added traversing through subviews, to 100% find the UIPageViewController‘s inner scroll view WARNING: Be careful with scrollview.contentOffset. It resets … Read more