iPhone SDK中如何将从Sqlite数据库获取的数据转换为NSArray到NSData
在我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的要求太奇怪了。
Your requirement is so odd.
使用 NSKeyedArchiver 如何将 NSArray 转换为 NSData?
Use NSKeyedArchiver How to convert NSArray to NSData?
循环它
对于一个数组中的多个图像,您可以像 PS一样
,如果只有一张图像,则其索引为 0
希望这有帮助
for multiple images in one array you can loop it
like
P.S. if theres only one image, its index is 0
hope this helps