I have to create a view where I have to put in a CoverFlow of Images. How can I crete it? There would be images with labels that can explain the image.
相关问题
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
- Get the NSRange for the visible text after scroll
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Xcode: Is there a way to change line spacing (UI L
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
A UICollectionView in iOS6 will allow you to do this. Look at the WWDC 2012 Videos (on developer.apple.com):
To get the videos:
The videos also show example code.
There is also example code on Github: Coverflow example
There are plenty of ways to do it
UICollectionView
keyword.UICollectionViewLayout
, you can use some of the already made classes -- there are a lot of them around on the net. One of the most famous being iCaroussel on github, which is free, compatible with multiple versions of iOS (not only iOS6), and allows you to do almost every kind of caroussel, includingiCarouselTypeCoverFlow
andiCarouselTypeCoverFlow2
types (see the README on its github)