gpt4 book ai didi

iphone - 将图像保存到自定义库

转载 作者:太空狗 更新时间:2023-10-30 03:55:26 27 4
gpt4 key购买 nike

我有一个应用程序可以将图像存储到 iphone 相册中的自定义库中。

我调用了 ALAssetLibrary 的以下函数

-(void)saveImage:(UIImage*)image toAlbum:(NSString*)albumName withCompletionBlock:(SaveImageCompletion)completionBlock
{
//write the image data to the assets library (camera roll)
[self writeImageToSavedPhotosAlbum:image.CGImage orientation:(ALAssetOrientation)image.imageOrientation
completionBlock:^(NSURL* assetURL, NSError* error) {

//error handling
if (error!=nil) {
completionBlock(error);
return;
}

//add the asset to the custom photo album
[self addAssetURL: assetURL
toAlbum:albumName
withCompletionBlock:completionBlock];

}];
}

在我的 SaveImage IBAction 中

-(IBAction)saveToLib:(id)sender
{
UIImage *savedImage = imgPicture.image;
NSLog(@"Saved Image%@",savedImage);
[self.library saveImage:savedImage toAlbum:@"Touch Code" withCompletionBlock:^(NSError *error) {
if (error!=nil) {
NSLog(@"Big error: %@", [error description]);
}
}];
}

但我的应用程序不断崩溃帮帮我提前致谢

最佳答案

您似乎没有正确调用 [self.library saveImage:savedImage toAlbum:@....]。如果您正在关注此 web site , 在您的 View Controller 中添加#import "ALAssetsLibrary+CustomPhotoAlbum.h"。

不知道是不是这个问题。很抱歉,如果此解决方法是错误的方法。

关于iphone - 将图像保存到自定义库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10032361/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com