UITableView Lazy Image Load, images appear after table STOPS scrolling

那年仲夏 提交于 2019-12-03 14:00:35

问题


I implemented lazy image load for my UITableView using NSUrlConnection. This is all working very nicely. When I open my table, I automatically get the images when I wait for a second (on 3G). However, when I scroll, the table loads the new cell's, starts the NSURLConnections, but when the image is finished loading (in code), they do not get put into the view until the table actually stops scrolling..

The Youtube application is able to load the images into the table WHILE scrolling, I'd like to do this as well, any hints / pointers?


回答1:


I just found my answer thanks to the 'Related' feature to the right.. Delayed UIImageView Rendering in UITableView

You have to start NSUrlConnection in a different run-loop, so that you receive data while the table is scrolling.

Thanks for the answers!




回答2:


Take a look at the Apple example LazyTableImages.

If you request all the images for your table asynchronously, they will load as they arrive.

You'll notice some applications wait for scrollViewDidEndDragging and loadImagesForOnscreenRows to be truly lazy and only request images for rows the user is currently examining.



来源:https://stackoverflow.com/questions/1984866/uitableview-lazy-image-load-images-appear-after-table-stops-scrolling

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!