I'm interested in building a class that uses custom scroll behavior. I've tried implementing a few approaches thus far that aren't really working like I'd hoped they would.
The idea of the custom scroll animation is to create a "folder tab" effect. The first cell is expanded to nearly full screen, while the next cells after it are collapsed into smaller sized cells. As you scroll down, the next cell expands and becomes the main cell, subsequently pushing the cell before it up and off the screen. The animation itself is right in the same ballpark as paging looks in a UIScrollView
.
If my explanation isn't clear enough, I'm trying to almost replicate what the Ultravisual iPhone app has built in their collections page.
Any viewpoints and/or opinions on how I could approach implementing something like this would be greatly appreciated!