Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Logan Shire
2,539 PointsHow to implement coverflow-style selection in iOS app.
Hi guys. I have an interesting question. Do you know if it's possible to implement coverflow-style selection in an iOS6 iPhone app? For example, when you are listening to music on your iphone, and you turn the phone sideways, you see the covers of all your albums and can swipe through them with your finger, then tap on one to select it. I am writing an app that is for a card game. Your hand is represented by an array of strings computationally, but visually, I want to generate 320x448 pictures of them using a template and a label. I then want the user to be able to scrub through his hand (5-9 cards) and pick one to play. Anyone have any ideas where to look?
2 Answers
Aaron Daub
Courses Plus Student 144 PointsLook into UICollectionView: https://github.com/schwa/Coverflow
Logan Shire
2,539 PointsThanks. I think I'm just gonna try something simpler for now though.