I have an I phone app which upon opening needs to display a table of data containing roughly 25000 records. Each record consists of two fields: TITLE and DESCRIPTION. Both fields are visible in each table cell. The tableview also is fully searchable with a UISearchBar.
When the application starts and this view is loaded a "collection object" grabs all the data from the table and loads it into "item objects". Since I need both fields for searching I really have nothing to hydrate/dehydrate; thus, the full table is in memory. There must be a better way offer the full search capability but drastically reduce the number of objects in memory at once.
Any ideas?
EDIT:
I guess I should explain further.
I am already using a SQLite database. My problem is that it is taking too long to load 20,000 records into memory and the application seems sluggish.
Also, If I only have 100 records on either side of the current selection how can I be searching ALL records (including the ones not in memory)?
I'll look into the table delegate suggestion.