NSData *imageData = UIImagePNGRepresentation(image);[imageData writeToFile:path atomically:YES];
where path is the name of the file you want to write it to.
NSData *imageData = UIImagePNGRepresentation(image);[imageData writeToFile:path atomically:YES];
where path is the name of the file you want to write it to.