有谁知道在呈现 UIImagePickerController 后如何获取选定的图像名称(来自照片库的名称)?
问问题
6933 次
1 回答
10
在ALAsset的帮助下,您可以实现这一目标。
第 1 步:Asset
从UIImagePicker
第 2 步:获取ALAssetRepresentation。Asset
第 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及更高版本。
于 2012-07-13T13:49:20.927 回答