2

Possible Duplicate:
Open source iPhone Coverflow like library

hello all i want to develop cover flow application in my native iphone application please guide me how could i do that

thanks in advance

Community
  • 1
  • 1
hardik
  • 254
  • 4
  • 15

2 Answers2

2

Cover flow works by using the UICoverFlowLayer class, which is private and undocumented. If you attempt to use it, Apple will refuse to release your app on the app store.

You might be able to create a hand-made solution using Core Animation, but it would be difficult to accurately emulate the way cover flow works, and may also annoy Apple. Consider using some other interface.

This discussion on the Apple website has more information that you might find useful.

Brian Willis
  • 22,768
  • 9
  • 46
  • 50
2

See for instance this

In principle you can use Opengl ES to create the animation having each 'cover' as a rendered UIIView (UIImage)

AndersK
  • 35,813
  • 6
  • 60
  • 86