iOS开发 图片多选功能

今天加班 闲来无事 解一些小白之忧,iOS开发 图片添加 多选与单选这个功能貌似太常见,目前还没精力自己去完整的功能.废话不说了上代码.先看一下效果图:

addImage.gif

此功能我用了两个第三方库:

https://github.com/iphone5solo/PYPhotoBrowser
https://github.com/banchichen/TZImagePickerController

PYPhotoBrowser使用Cocoapods安装的方式:pod "PYPhotoBrowser" 然后导入主头文件#import
TZImagePickerController使用Cocoapods安装的方式:pod 'TZImagePickerController' 然后导入主头文件#import "TZImagePickerController.h

如果不懂这两个第三方 分别的作用可以打开git地址 看看文档
接受的代理为TZImagePickerControllerDelegate,PYPhotosViewDelegate
定义一个@property (nonatomic, weak) PYPhotosView *publishPhotosView;属性 保存选择的图片
点击选择添加图片按钮调用方法:

-(void)ininPhotoView{
    // 1. 常见一个发布图片时的photosView
    PYPhotosView *publishPhotosView = [PYPhotosView photosView];
    publishPhotosView.py_x = 5;
    publishPhotosView.py_y = 10;
    // 2.1 设置本地图片
    publishPhotosView.images = nil;
    // 3. 设置代理
    publishPhotosView.delegate = self;
    publishPhotosView.photosMaxCol = 4;//每行显示最大图片个数
    publishPhotosView.imagesMaxCountWhenWillCompose = 3;//最多选择图片的个数
    // 4. 添加photosView
    [self.view addSubview:publishPhotosView];
    self.publishPhotosView = publishPhotosView;
}

需要完成的代理方法

#pragma mark - PYPhotosViewDelegate
- (void)photosView:(PYPhotosView *)photosView didAddImageClickedWithImages:(NSMutableArray *)images{
    // 在这里做当点击添加图片按钮时,你想做的事。
    [self getPhotos];
}

// 进入预览图片时调用, 可以在此获得预览控制器,实现对导航栏的自定义

- (void)photosView:(PYPhotosView *)photosView didPreviewImagesWithPreviewControlelr:(PYPhotosPreviewController *)previewControlelr{
    NSLog(@"进入预览图片");
}

进入相册的方法:

-(void)getPhotos{
    CCDefineWeakSelf;
    TZImagePickerController *imagePickerVc = [[TZImagePickerController alloc] initWithMaxImagesCount:3-weakSelf.photos.count delegate:weakSelf];
    // 你可以通过block或者代理,来得到用户选择的照片.
    [imagePickerVc setDidFinishPickingPhotosHandle:^(NSArray *photos, NSArray *assets,BOOL isSelectOriginalPhoto){
        NSLog(@"photos===%@",photos);
        for (UIImage *image in photos) {
            [weakSelf requestData:image];//requestData:图片上传方法 在这里就不贴出来了
        }
        [weakSelf.photos addObjectsFromArray:photos];
    [self.publishPhotosView reloadDataWithImages:weakSelf.photos];
    }];
    [weakSelf presentViewController:imagePickerVc animated:YES completion:nil];
}

大功告成,惊不惊喜?意不意外? 代码这么少 这就是我不喜欢造轮子的原因之一,当然也是我工资低的原因之一.....

你可能感兴趣的:(iOS开发 图片多选功能)