iOS 获取相册中图片的名字 url

 __block NSString *imageFileName;
 NSURL *imageURL = [info valueForKey:UIImagePickerControllerReferenceURL];
 ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset) {
   ALAssetRepresentation *representation = [myasset defaultRepresentation];
   imageFileName = [representation filename];
}; ALAssetsLibrary
* assetslibrary = [[ALAssetsLibrary alloc] init]; [assetslibrary assetForURL:imageURL resultBlock:resultblock failureBlock:nil];

 

posted @ 2016-06-24 17:17  TigerCui  阅读(1089)  评论(1编辑  收藏  举报