I am loading some images from the internet in a table view inside My problem is that even if I use | |||||||||||||
|
1 +100 | It looks like even though the download of the image is performed in a background thread, the work with the image data is done in the main thread, thus it blocks your application. You could try the asynchronous image downloader provided by SDWebImage. In your method it should look like: | ||
add comment |
1 | Download the image on a separate thread, like so: | ||||
|
0 | You have to load asynchronously from server so your tableView will scrolling smoothly. Please check below answer you will be able to solve your problem. | ||
add comment |
No comments:
Post a Comment