[Solved] Image is in NSData format I want to convert into image files [closed]

[ad_1]

You can get UIImage from NSData like this

NSData *data = yourData;

UIImage *image = [UIImage imageWithData:data];

6

[ad_2]

solved Image is in NSData format I want to convert into image files [closed]