-1
我節省UIImage
用這種方法:用我自己的名字保存UIImage?
//save to file
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *basePath = ([paths count] > 0) ? [paths objectAtIndex:0] : nil;
UIImage *imageToSave = newSize;
NSData *binaryImageData = UIImagePNGRepresentation(imageToSave);
[binaryImageData writeToFile:basePath atomically:YES];
我想給它自己的名字(myImage.png)。 在我的代碼中,我可以插入一個名稱嗎? 謝謝。