I am trying to load 10k static records in TableView. It took 30s-45s to render tableview. How can I improve performance?
Analysed on lazy loading, found related search results only on downloading from remote server for images.
Note: i have tried loading the data in main thread which makes the app to get freezed
i had an idea of loading the 100 data at a time and when it is scrolled we can load the another 100 data. But i dont know exacty how to implement this
i have searched with these links
Table View takes a lot of time to refresh after "reloadData()"
UITableView reloadData taking too much time
Nothing has solved the problem
Anyone suggest for achieving this?