自定义单元格中的图像问题

发布于 2024-09-07 23:08:41 字数 68 浏览 1 评论 0原文

从 sqlite 数据库获取图像数据,但无法在 imageview 的自定义单元格中显示。是否有任何图像数据到图像的转换。

Getting image data from sqlite database but not able to display in custom cell of imageview.is there any conversion of image data into image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

朮生 2024-09-14 23:08:41

超级简单。有一个 UIImage 便捷方法可以实现这一点。

//assuming the existence of an NSData *myData
UIImage *myImage = [UIImage imageWithData:myData];

事实上,很简单,我怀疑这实际上不是你的问题。如果没有,请澄清您的要求。

Super easy. There's a UIImage convenience method for exactly that.

//assuming the existence of an NSData *myData
UIImage *myImage = [UIImage imageWithData:myData];

So easy, in fact, I suspect that's not actually your question. If not, please clarify what you're asking.

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