tags:

views:

953

answers:

2

Hi,

I need to implement cover flow functionality to our iPhone application. I tried to get sample code on net to get started with it. But I didn't find any luck. Can anyone tell me how to implement cover flow functionality or gimme a sample code?

Thanks In Advance!

+1  A: 

Try FlowCover at

http://www.chaosinmotion.com/flowcover.m

the source code provides you with a FlowCoverView realizing the coverflow effect. You simply need to customize a few delegate methods. Take a look at the example source code, customizing it to suit your needs should be straightforward.

unforgiven
Thanks for your reply. Can you plz explain me what BSD license is?
saikamesh
Basically the BSD license allows you to use the code for both non commercial and commercial applications. You only need to add to your application the few lines of text (shown in the license itself) stating that the original source code of FlowCover belongs to his author.
unforgiven
+1  A: 

You might also want to check out a library I released at iPhoneDevCamp -- OpenFlow. http://apparentlogic.com/openflow

It is all core animation-based, so it's easy to understand and customize to your needs. AFOpenFlowView is a subclass of UIView.

I included a demo application, and check out the blog entry on my personal website for a bit more information about its use. fajkowski.com

Drop me a line if you have any questions or comments! -Alex

thefaj