Re: UICollectionView parallax-like horizontal scrolling

2014-10-16 Thread Mazzaroth M.
Thanks, will investigate your suggestions. On Thu, Oct 16, 2014 at 10:54 AM, Luke Hiesterman wrote: > There are multiple ways to skin this cat. One is to use two collection > views and just modify the content offset of one of them in response to the > scrolling of the other. > > The behavior can

Re: UICollectionView parallax-like horizontal scrolling

2014-10-16 Thread Luke Hiesterman
There are multiple ways to skin this cat. One is to use two collection views and just modify the content offset of one of them in response to the scrolling of the other. The behavior can also be built into a layout if you want to use a single scroll view. You don’t need different types of cell

UICollectionView parallax-like horizontal scrolling

2014-10-15 Thread Mazzaroth M.
In the running apps view(double-tap Home button) there are two rows each which contain two different types of cells. How would one implement this using UICollectionView? I more or less want to do this where the lower row cells are slightly narrower than the upper row such that when you swipe to sc