You can get UIImage NSData as follows:
NSData *data = yourData; UIImage *image = [UIImage imageWithData:data];
or
NSData *data = yourData; UIImage *image = [[UIImage alloc] initWithData:data]; .... [image release];
Ilanchezhian Apr 11 '12 at 7:20 2012-04-11 07:20
source share