在我的iPhone App中,我将图像存储到NSData
UIImage *image =imageView.image;
NSData *myData = UIImagePNGRepresentation(image);
但如何从“NSData
”取回“图片”,我可以再次将其显示到UIImageView
。
请帮助和建议, 谢谢。
答案 0 :(得分:15)
你试过+[UIImage imageWithData:]
吗?
答案 1 :(得分:7)
UIImage *img=[UIImage imageWithData:data];
[yourImageView setImage:img];