Show images with Cover Flow effect in Objective-C

1

I'm looking for a library that lets you display images with Cover Flow effect. But I have seen that the libraries that the staff have used are "third parties."

I wonder if there is a native Objective-C class, framework or API, or Apple's own availability to do so.

For those who do not know, Cover Flow is the way you view images as if they are rotating on a carousel.

link

    
asked by anonymous 29.09.2014 / 16:22

1 answer

1

There is no native component. You can build one using UICollectionView with horizontal scrolling, but it will be relatively laborious. I suggest using the library iCarousel

It's very simple to use and very customizable.

    
29.09.2014 / 18:17