如何在目标c中的照片库中保存和删除带有名称的图像

时间:2017-12-20 05:31:19

标签: ios objective-c uiimage

我是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];

此代码使用名称保存图像,但不在照片库中的目录中保存。

我需要在照片库中保存带有名称的图像,如果已经保存在照片库中,还需要将其删除。

0 个答案:

没有答案