I want to create a graphic multi-dimensional array like this :
I saw collection-view but I never use it so I don’t know if it can be efficient for what I want. Maybe a library exist ?
What is the best way to create this ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UICollectionViewis good for displaying data in a grid-like manner, so I think it’ll fit your purpose well. The only caveat is that it is a class introduced with a very recent version of iOS (iOS 6). If you want your app to run on previous versions of iOS as well, you may want to take a look at some of the open source clones ofUICollectionView, for example: https://github.com/steipete/PSTCollectionView