Save An Image To Application Documents Folder From UIView On IOS

It’s all good, man. Don’t harm yourself or others. You probably don’t want to store these images in Core Data, since that can impact performance if the data set grows too large. Better to write the images to files. NSData *pngData = UIImagePNGRepresentation(image); This pulls out PNG data of the image you’ve captured. From here, … Read more