Reputation: 21
Does anyone have ideas about how to implement the scrolling effect as in the iPhone app Applauze in iOS? How to implement this event screen - scrolling effect with the images expanding on scroll up and contract on scroll down in ios.
Upvotes: 1
Views: 860
Reputation: 1371
Here's a solution that uses UICollectionView
(instead of UITableView
):
https://github.com/syshen/SlipingSlide
iOS 7 has some similar exotic effects in it like the tabs in Safari and the passes in the PassBook interface. I recommend you watch session 217 from WWDC 2013 for more information.
Upvotes: 1