4

I need to do something like the new app store as shown on the attached image App Store ScreenShot

however, i know that i have to use scroll view with some images or button inside

but im wondering about the curves and sliding images, resizing while scrolling, im talking about the all features of that

any good example or explanation ??

NSGod
  • 22,699
  • 3
  • 58
  • 66

2 Answers2

4

Here are some codes emulating the look and feel of the Appstore apps:

The WellSegmentedController: http://www.cocoacontrols.com/platforms/ios/controls/sdwellsegmentedcontrol

The image Carussel: http://www.binpress.com/app/icarousel/614

I know someone also made the paginated grid code, but I simply can't find it anymore. However, a good look at cocoacontrols.com should give you all the spare parts you need.

Nils Munch
  • 8,805
  • 11
  • 51
  • 103
2

If you want to use UIKit, take a look at UICollectionView. There's a good starting tutorial here by Ray Wenderlich - http://www.raywenderlich.com/22324/beginning-uicollectionview-in-ios-6-part-12

Warning, it's iOS6+ only though for that class set.

Adam Waite
  • 19,175
  • 22
  • 126
  • 148