0

ユーザーが選択した画像から EXIF データを読み込もうとしています。これには ALAssetLibrary を使用しています。これまでのところ、assetForURL:resultBlock:failureBlock:メソッドに必要な参照 URL を取得できましたが、参照 URL を使用して何かを実行しようとすると、EXC_BAD_ACCESSエラーが発生します。

URL を使用するNSLog直前に、(私の知る限り正しい) 文字列が得られます。

assets-library://asset/asset.JPG?id=1000000003&ext=JPG

私はこれを理解しようとしてきましたが、毎回行き止まりにぶつかっているようです。私は一般的に Objective-C に慣れていないことを認めなければならないので、それに応じて私のコードを自由に批判してください。

コード (完全なクラスにはほど遠いですが、それで十分だと思います):

//Class_X.m

-(void)readExifDataFromSelectedImage:(NSURL *)imageRefURL    
{
    void (^ALAssetsLibraryAssetForURLResultBlock)(ALAsset *) = ^(ALAsset *asset)
    {
       NSLog(@"Test:Succes");
    };

    ALAssetsLibrary *myAssetLib;
    NSLog(@"%@",imageRefURL);
    [myAssetLib assetForURL:imageRefURL
                resultBlock:ALAssetsLibraryAssetForURLResultBlock 
               failureBlock:^(NSError *error){NSLog(@"test:Fail");}];
}

//Class_Y.m
//This  also conforms to the UIImagePickerControllerDelegate And the NavigationControllerDelegate protocols:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    self.referenceURL = [info valueForKey:@"UIImagePickerControllerReferenceURL"];
    NSString *mediaType = [info
                       objectForKey:UIImagePickerControllerMediaType];
    [self dismissModalViewControllerAnimated:YES];
    if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {
        UIImage *selectedImage = [info objectForKey:UIImagePickerControllerOriginalImage];
        imageView.image = selectedImage;
        btnNoPicture.hidden = YES;
        btnSelectPicture.hidden = YES;
        btnTakePicture.hidden = YES;
        imageView.hidden = NO;
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Use this image?" 
                                                        message:@"Are you sure you want to use this image?" 
                                                       delegate:self 
                                              cancelButtonTitle:@"No" 
                                              otherButtonTitles:@"Yes", nil];
        [alert show];
        [alert release];
    }

}


-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 0)
    {
        //Do not use the selected image.
        imageView.image = nil;
        imageView.hidden = YES;
        //Restart picking process
    }
    else
    {

        // I have an instance variable of type Class_X which i use 
        // throughout this class; let's call this variable "report". 
        // I also have the referenceURL stored as an instance variable.
        [self.report readExifDataFromSelectedImage:self.referenceURL];
    }

}
4

1 に答える 1

3

EXC_BAD_ACCESSほとんどの場合、過剰に解放されたオブジェクト (ダングリング ポインター) の結果です。ライブラリは非同期で動作するため、readExifDataFromSelectedImage:メソッドが返された後にブロックが実行されるため、この時点で imageRefURL はおそらく既に割り当て解除されています。retainアセットをリクエストする前に URL を試しrelease、成功ブロックと失敗ブロックでそれを試してください。

于 2011-05-16T15:09:32.127 に答える