博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS中图片与视频一次性多选
阅读量:5140 次
发布时间:2019-06-13

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

 

http://www.cnblogs.com/v2m_/archive/2012/12/21/2827324.html

一.使用系统的Assets Library Framework

这个是用来访问Photos程序中的图片和视频的库。其中几个类解释如下
  ALAsset
    ->包含一个图片或视频的各种信息

  ALAssetRepresentation

    ->得到ALAsset的各种信息

  ALAssetsFilter

    ->用来从一个ALAssetsGroup中检索ALAssets

  ALAssetsGroup

    ->一组ALAsset,一个asset可以属于多个这样的组,可以添加一个asset到某个组中

  ALAssetsLibrary

    ->整个图片库中的内容,可以对图片库的获取与编辑等

  网上有人说这种方法会要求授权地理位置信息,不过我没有遇到...

看看官方的使用示例,枚举的时候以nil结束哦,记得判断处理下。

// The following example shows how you can get an asset to represent the first video in the Saved Photos Album.ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];// Enumerate just the photos and videos group by using ALAssetsGroupSavedPhotos.[library enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos usingBlock:^(ALAssetsGroup *group, BOOL *stop) {// Within the group enumeration block, filter to enumerate just videos.[group setAssetsFilter:[ALAssetsFilter allVideos]];// For this example, we're only interested in the first item.[group enumerateAssetsAtIndexes:[NSIndexSet indexSetWithIndex:0]options:0usingBlock:^(ALAsset *alAsset, NSUInteger index, BOOL *innerStop) {// The end of the enumeration is signaled by asset == nil.if (alAsset) {ALAssetRepresentation *representation = [alAsset defaultRepresentation];NSURL *url = [representation url];AVAsset *avAsset = [AVURLAsset URLAssetWithURL:url options:nil];// Do something interesting with the AV asset.}}];}failureBlock: ^(NSError *error) {// Typically you should handle an error more gracefully than this.NSLog(@"No groups");}];[library release];

 

二.网络上的另一种方法-MHImagePickerMutilSelector

这个是通过设置 UINavigationControllerDelegate的方法,当UIImagePickerController显示在界面上的时候,判断一下 当前是图集列表(相当于AlAssetsGroup的列表)还是图片列表(相当于AlAsset的列表),如果是图片列表就调整scrollview的大 小,并在下面加上一个自己的滚动视图用来显示已经选择的图片。

这个方法的缺点是对已经选择的图片做点自定义的动作相对而言比较麻烦。

我稍微修改了下^_^(仅仅是稍微,让它调用的时候简单了点,对重复图片什么的也没有处理)

使用时只要UIVIewController实现了 MHImagePickerMutilSelector的协议,然后这样调用就好了。

[MHImagePickerMutilSelector showInViewController:self];

 

点下载。

 

参考:http://www.cocoachina.com/bbs/read.php?tid=112242

转载于:https://www.cnblogs.com/allanliu/p/4210996.html

你可能感兴趣的文章
CSS伪类与CSS伪元素的区别
查看>>
如何:修改字符串内容
查看>>
Tomcat Server之启动---Bootstrap类
查看>>
经典问题-生产者和消费者问题
查看>>
Hadoop Distributed File System 简介
查看>>
文档通信(跨域-不跨域)、时时通信(websocket)、离线存储(applicationCache)、开启多线程(web worker)...
查看>>
常用正则表达式
查看>>
队列的基本使用方法
查看>>
解题:USACO18FEB Taming the Herd
查看>>
ACM-括号匹配问题
查看>>
使用Python中的urlparse、urllib抓取和解析网页(一)(转)
查看>>
Linux_屏蔽360、scanv、QQ管家等IP扫描
查看>>
LeetCode 538. Convert BST to Greater Tree
查看>>
@JoinColumn
查看>>
22_传智播客iOS视频教程_类的定义
查看>>
HDU 1856
查看>>
[HDU 2102] A计划(搜索题,典型dfs or bfs)
查看>>
推荐给4.3.3越狱用户的安全漏洞修复工
查看>>
用HTML的select+option标签实现下拉框
查看>>
[改善Java代码]asList方法产生的List对象不可更改
查看>>