What is the correct way for building a scrollable list with images
that will be able to deal with 400 items?
Should I use UITableView for these?
What is the correct way for storing and retrieving the data? SQlite?
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.
UITablebview can display an arbitrarily large list because it only has to reserve memory to display the rows that are actually on screen. An indexed table can let your users jump down the list.
Core data would be your best option to store your data in.