My app is basically a tab based one .in the first tab i have a tableview the data is loaded from a web server .my problem is that the tableview scroll is getting hanged
Asked
Active
Viewed 93 times
0
-
Read [this](http://stackoverflow.com/questions/6462460/best-practices-fast-uitableview-scrolling), [this](http://stackoverflow.com/questions/1352479/tricks-for-improving-iphone-uitableview-scrolling-performance),[this](http://stackoverflow.com/questions/6172158/how-can-i-speed-up-a-uitableview) – Krishnabhadra Nov 23 '11 at 08:47
3 Answers
1
Are you using 'sendSynchronousRequest:'? Don't. Use asynchronous networking. Synchronous networking blocks the main thread, and halts UI drawing until the request returns.

Alan Zeino
- 4,406
- 2
- 23
- 30
0
The best option is you fetch data when view gets appeared and after that you load data in tableview.

Leena
- 2,678
- 1
- 30
- 43
0
Probably the issue is with dynamic allocation of height for tableview and also for the cell. Do a check on these. For any of your questions, make sure that you are adding some snippets of code which gives better understanding of the question.

Anil Kumar
- 654
- 1
- 6
- 18