I have created an custom cell in UITableview and its work fine for simulator as well as device.In device scroll the tableview its lagging how to increase the performance as well as fast scrolling in UITableview.
Asked
Active
Viewed 144 times
0
-
What's the count of dataSource array? If huge, I would suggest you to use pagination so that you can load next set of data when user scrolls to bottom. – Ajith Renjala Mar 21 '14 at 06:13
-
Possible duplicate of http://stackoverflow.com/questions/1352479/tricks-for-improving-iphone-uitableview-scrolling-performance – Ajith Renjala Mar 21 '14 at 06:30
1 Answers
0
To increase the performance of the table you can load the table asynchronously . Refer the my following answer :
how to do multi-threading to load the image faster to tableView?