如何获取UIImagePicker所选的图像名称?

时间:2012-07-13 13:14:24

标签: ios image uiimagepickercontroller

有人知道如何在呈现UIImagePickerController后获取所选图像名称(来自照片库的名称)吗?

1 个答案:

答案 0 :(得分:10)

ALAsset的帮助下,您可以实现这一目标。

第1步:从Asset

获取所选图片的UIImagePicker

第2步:获取Asset的{​​{3}}。

第3步:ALAssetRepresentation类有一个名为fileName

的属性
- (NSString *)filename

返回表示磁盘上表示的文件名的字符串。

此示例代码将帮助您......

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

    NSURL *imageURL = [info valueForKey:UIImagePickerControllerReferenceURL];
    ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)
    {
        ALAssetRepresentation *representation = [myasset defaultRepresentation];
        NSString *fileName = [representation filename];
        NSLog(@"fileName : %@",fileName);
    };

    ALAssetsLibrary* assetslibrary = [[[ALAssetsLibrary alloc] init] autorelease];
    [assetslibrary assetForURL:imageURL 
                   resultBlock:resultblock
                  failureBlock:nil];

}

注意:它仅适用于 iOS 5 及更高版本。