如何使用 UIImage 从 tableview 单元格中的 url 平滑滚动

发布于 2024-08-17 06:24:46 字数 316 浏览 4 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2024-08-24 06:24:46

尝试异步加载图像。您的主线程必须等待每个图像加载后才能继续绘制表格视图。

这可能有点太复杂了,无法在这里解释,所以请以此源代码作为参考

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文