tags:

views:

151

answers:

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

+2  A: 

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
thank you very much for your response
hardik
+1  A: 

See for instance this

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

Anders K.
thanks a lot i will look forward to it
hardik