Hi everyone,
I am battling with a very annoying tableView problem.
To start off with, I am aware that tableViews were designed with a lazy-load feature, which loads tableView data when they become “visible” on the screen. This is great, however, because it is not preloading all the data from all my rows, I cannot access all my data when I need to.
For example, I have a search feature that allows me to search for certain rows. Let’s say my list contains 100 rows. The search feature will only see data that has been rendered “visible”. The rest of my data is unreachable, because tableView has not preloaded all that data. It loads it all on the fly.
Is there a way I can preload all my tableView data?
I know there are a few threads out there about preloading images, but I need all my params preloaded, not only images.
Any advice would be greatly appreciated!
Thanks!
David