有人知道如何在呈现UIImagePickerController后获取所选图像名称(来自照片库的名称)吗?
答案 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 及更高版本。