将图像保存到自定义库

时间:2012-04-05 16:27:29

标签: iphone objective-c alassetslibrary

我有一个应用程序,可以将图像存储到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]);
        }
    }];
}

但是我的应用程序一直在崩溃 帮帮我 在此先感谢

2 个答案:

答案 0 :(得分:0)

您似乎没有正确地调用[self.library saveImage:savedImage toAlbum:@ ....]。如果您正在关注此web site,请在视图控制器中添加#import“ALAssetsLibrary + CustomPhotoAlbum.h”。

不确定是不是问题所在。很抱歉,如果这种解决方法是错误的方法。

答案 1 :(得分:0)

问题是他下载的网站上的文件。

我遇到了同样的问题并且自己重写代码解决了这个问题。

也许编码或类似的东西......