博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 使用系统相册获取选取图片的名称
阅读量:5363 次
发布时间:2019-06-15

本文共 898 字,大约阅读时间需要 2 分钟。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary
*)info{ NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType]; //1.选择的是图片资源 if ([mediaType isEqualToString:@"public.image"]) {

      if (img !=nil) {

            //获取图片的名字

            __block NSString* imageFileName;

            NSURL *imageURL = [info valueForKey:UIImagePickerControllerReferenceURL];

            NSLog(@"imgurl:%@",imageURL);

            __weak typeof(self) weakSelf = self;

            ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)

            {

                ALAssetRepresentation *representation = [myasset defaultRepresentation];

                imageFileName = [representation filename];

            };

            ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];

            [assetslibrary assetForURL:imageURL

                           resultBlock:resultblock

                          failureBlock:nil];

        }

}}

转载于:https://www.cnblogs.com/guchunli/p/6654882.html

你可能感兴趣的文章
组合数据类型练习,英文词频统计实例上
查看>>
Uber回馈开源的一些软件
查看>>
day 3 修改haproxy.cfg 作业
查看>>
UIScrollView —— 缩放实现案例(二)
查看>>
【Qt】Qt Linguist介绍【转】
查看>>
sim usim Uim 区别
查看>>
网页中插入透明Flash的方法和技巧
查看>>
动态内存申请函数选择(realloc、malloc 、alloca、 calloc)
查看>>
获取元素属性get_attribute
查看>>
视觉设计师的进化
查看>>
Python/jquery
查看>>
【BZOJ】【2132】圈地计划
查看>>
Lua 语言基本语法
查看>>
ARM 的Thumb状态测试
查看>>
windows下读取utf-8文件
查看>>
apache 启动不了的排查方法
查看>>
Java有没有goto?
查看>>
(转)makefile 的用法
查看>>
求不相邻金币相加和的最大值--动态规划1
查看>>
[转][osg]探索未知种族之osg类生物【目录】
查看>>