Possible Duplicate:
NSData to UIImage
How do I convert a NSData value to UIImage?
You can get UIImage from NSData as follows:
NSData *data = yourData;
UIImage *image = [UIImage imageWithData:data];
or
NSData *data = yourData;
UIImage *image = [[UIImage alloc] initWithData:data];
....
[image release];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With