开发者

List with 400 items + images

开发者 https://www.devze.com 2022-12-14 06:27 出处:网络
What is the correct way for building a scrollable list with images that will be able to deal with 400 items?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消