Hi!
I've been asking lately about Obj-C circular buffer objects, assuming that would be the better way to control tons of data on a UITableView.
I have found a solution as far as Circular buffer objects go, but I've been wondering about maybe a better, faster and much more memory efficient solution: Calling my SQLite DB to update the UITableView.
In a way - the memory will be released after updating the UITableView, and there won't be any need to hold reference to the objects, which will be more efficient and memory saving than holding a constant NSMutableArray with all of the objects inside it.
How would you approach updating a UITableView with masses of data (50k objects) that are also stored on a SQLite database?
Thanks in advance, ~ Natanavra.