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


You can get UIImage from NSData like this

NSData *data = yourData;

UIImage *image = [UIImage imageWithData:data];

6

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