我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)。在我的代码中我可以在哪里插入一个名字?谢谢 。