iPhone SDK中如何将从Sqlite数据库获取的数据转换为NSArray到NSData

发布于 2024-10-12 01:34:22 字数 209 浏览 2 评论 0原文

在我的iPhone应用程序中,

我将图像转换为NSData格式并将其存储到dataType =“BLOB”的sqlite数据库表中,

但是,我正在从数据库中将该图像(以NSData格式存储)检索为NSArray格式,

问题是我无法将 NSArray 转换为 NSData (这将帮助我将图像恢复为 NSData 格式)

请帮助和建议, 谢谢

In My iPhone App,

I am converting my image in to NSData format and storing it into sqlite database Table in dataType="BLOB",

But, I am retriving that image (stored in NSData format) into NSArray Format from database,

The Problem is I am not able to convert NSArray to NSData ( Which would Help me to get my image back into NSData format )

Please Help and Suggest,
Thanks

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

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

发布评论

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

评论(3

不知在何时 2024-10-19 01:34:22

你的要求太奇怪了。

  1. 您可以将图像存储在本地文件系统中,并使用 sqlite 中的文件名
  2. 如果您确实希望将图像存储在 sqlite 中,则可以将每个图像单独存储在 sqlite 中,而不是将图像存档在 NSArray 中,而不是转换为 NSData

Your requirement is so odd.

  1. you can store image in local file system with the file name in sqlite
  2. if you really want images store in sqlite, you can every image in sqlite separately rather than archive images in NSArray than convert to NSData
木有鱼丸 2024-10-19 01:34:22
UIImage *imgData = [UIImage imageWithData:[yourArray objectAtIndex:theIndex]];

循环它

对于一个数组中的多个图像,您可以像 PS一样

for (int i = 0;i<[yourArray count];i++) {
      UIImage *img = [UIImage imageWithData:[yourArray objectAtIndex:i];
      //do something here with each image
      // for example, add it to an ImageView
}

,如果只有一张图像,则其索引为 0
希望这有帮助

UIImage *imgData = [UIImage imageWithData:[yourArray objectAtIndex:theIndex]];

for multiple images in one array you can loop it

like

for (int i = 0;i<[yourArray count];i++) {
      UIImage *img = [UIImage imageWithData:[yourArray objectAtIndex:i];
      //do something here with each image
      // for example, add it to an ImageView
}

P.S. if theres only one image, its index is 0
hope this helps

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