我是iOS的新手,我在使用名称保存照片库中的图像时遇到问题。我使用这样的代码来保存照片中的图像:
UIImageWriteToSavedPhotosAlbum(Imagename.image, nil, nil, nil);
此代码将图像保存在照片库中,但不保存名称
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"Image.png"];
NSLog(@"File Path =%@",filePath);
// Save image.
[UIImagePNGRepresentation(Imagename.image) writeToFile:filePath atomically:YES];
此代码使用名称保存图像,但不在照片库中的目录中保存。
我需要在照片库中保存带有名称的图像,如果已经保存在照片库中,还需要将其删除。