List with 400 items + images
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 开发者_JAVA技巧data? SQlite?
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.
Definitely UITableView, and SQLite would work, but CoreData would be better.
精彩评论