如何使用 UIImage 从 tableview 单元格中的 url 平滑滚动
我尝试在 tableview 单元格中显示来自 url 的 UIImage,但它滚动不顺畅。
在滚动图像时,图像不会被缓存,每次它转到 url 来显示和滚动时,都会粘住一些,而
[cell setProductImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[dict_productinfo valueForKey:@"productimage"]]]]]
我制作自定义单元格并将 imageview 放在其上以显示图像
I try to display UIImage from url in tableview cell but it's not scroll smoothly.
at time to scroll image is not cached and every time it goes to url to display and scroll is stick some while
[cell setProductImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[dict_productinfo valueForKey:@"productimage"]]]]]
I make custom cell and put imageview on that to display image
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试异步加载图像。您的主线程必须等待每个图像加载后才能继续绘制表格视图。
这可能有点太复杂了,无法在这里解释,所以请以此源代码作为参考
Try loading your images asynchronously. Your main thread has to wait for each image to be loaded before it can continue to draw your table view.
This might be a litte too complex to explain here so take this sourcecode as a reference