I have an array of posts in which the size could be 100000 or more.
I want to show this in an alphabetical order (in which user can navigate to the alphabet easily), what is the best way to do this? Doing a TableView with 100000 entries I think won’t be a good idea.. Looking for some suggestions to do this.
I have an array of posts in which the size could be 100000 or
Share
I’m not sure there is a good way to present 100,000 records on an iPhone or iPad. I guess the question I would ask is does the user REALLY need to access that volume of data at one time on those types of devices?
If not, then I think you could resolve this with either some filters (to limit the results in a paginated grid) or a decent search algorithm.
Cheers!