iOS 自定义多选相册

自定义多选相册

一个项目需要类似于安卓的多选相册,而iOS自带的Piker只能单选,所以就想到了自定义,自定义的过程是辛苦的,结果出来之后是高兴的。

写在前面

本代码只展示了iOS默认的相册内容,如果读者有其他想法的欢迎再本代码基础上修改。

获取系统默认的相册

-(PHFetchResult *)smartAlbums{
    
    if (_smartAlbums == nil) {
        _smartAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary options:nil];
    }
    return _smartAlbums;
}

获取系统相册中的相片

默认的照片排序是时间先后顺序,这里我也规定了按照文件创建的先后顺序来排序呢,为了避免同时引用过多的image导致内存暴增,这里使用的都是缩略图,而且只允许引用前20项。

- (void)initPhotoData{
    [self.photoArray removeAllObjects];
    __weak typeof(self) weakSelf = self;
    for (PHCollection * obj in self.smartAlbums) {
        if ([obj isKindOfClass:[PHAssetCollection class]]) {
            PHAssetCollection *collection = (PHAssetCollection *)obj;
            PHFetchOptions *options = [[PHFetchOptions alloc] init];
            options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO]];
            PHFetchResult *fetchReuslt  = [PHAsset fetchAssetsInAssetCollection:collection options:options];
            NSLog(@"count - %ld",(unsigned long)fetchReuslt.count);
            if (fetchReuslt.count == 0) {
                continue;
            }
            NSInteger count = 20

将获取到的缩略图展示到CollectionView上

具体的演示效果就是这样
  • 这个项目在码云的git库上有,地址为https://git.oschina.net/LiynXu/PhotoDemo.git。
  • 如果有任何意见或者建议,或者发现bug(应该是有的),请移步值git库下给予指导,3Q。

你可能感兴趣的:(iOS 自定义多选相册)