iPhone How to get image back from NSData
In my iPhone App I am storing image into NSDat开发者_如何学Ca
by
UIImage *image =imageView.image;
NSData *myData = UIImagePNGRepresentation(image);
But How to get back "image" from "NSData
" and I can display it again into in to UIImageView
.
Please Help and Suggest, Thanks.
have you tried +[UIImage imageWithData:]
?
UIImage *img=[UIImage imageWithData:data];
[yourImageView setImage:img];
精彩评论