What is the correct way for building a scrollable list with images that will be able to dill with 400 items? Should I use UITableView for these?
What is the correct way for storing and retrieving the data? SQlite?
Thanks-
Nir.
What is the correct way for building a scrollable list with images that will be able to dill with 400 items? Should I use UITableView for these?
What is the correct way for storing and retrieving the data? SQlite?
Thanks-
Nir.
Definitely UITableView, and SQLite would work, but CoreData would be better.
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.