Search code examples
iphoneobjective-cuiimagensdateuiimagejpegrepresentation

iPhone How to get image back from NSData


In my iPhone App I am storing image into NSData 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.


Solution

  • have you tried +[UIImage imageWithData:]?