Hello,
I have some questions about efficiently loading entries for a UITableView.
First I do a request to a server, the server gives me an XML output with about 500 to 1000 entries. Each entry should be represented as clickable/touchable item in the UITableView.
What is the best way to do this, as efficient as possible? I doubt loading the 500 to 1000 entries at once is a good idea.
Should I do something with lazy loading, if so..does the UITableView support lazy loading.
I have also taken a look at the App store on the iPhone as an example. There you get 25 entries and at the bottom you can click on a "Show 25 more..." option. Is this perhaps a better approach?
Any help and suggestions are welcome since I am new to this. Thanks in advance.
I have some questions about efficiently loading entries for a UITableView.
First I do a request to a server, the server gives me an XML output with about 500 to 1000 entries. Each entry should be represented as clickable/touchable item in the UITableView.
What is the best way to do this, as efficient as possible? I doubt loading the 500 to 1000 entries at once is a good idea.
Should I do something with lazy loading, if so..does the UITableView support lazy loading.
I have also taken a look at the App store on the iPhone as an example. There you get 25 entries and at the bottom you can click on a "Show 25 more..." option. Is this perhaps a better approach?
Any help and suggestions are welcome since I am new to this. Thanks in advance.