CTImagePicker - iOS照片选择

jopen 8年前

CTImagePicker

CI Status Version License Platform

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

CTImagePicker is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "CTImagePicker"

Use

     #import "CTImagePicker.h"        CTImagePicker *picker = [[CTImagePicker alloc]init];      picker.callBack = self;      [self presentViewController:picker animated:YES completion:nil];    实现协议<CTImagePickerDelegate>    - (void)didPickArrayWithImage:(NSArray *)imageArray{      for (UIImage *image in imageArray) {      }      NSLog(@"%ld",(long)imageArray.count);  }

screen shot

image image image

question

  1. havn't number limit
  2. havn't preview function

Author

黄成, 632300630@qq.com

License

CTImagePicker is available under the MIT license. See the LICENSE file for more info.


项目地址: https://github.com/Mikora/CTImagePicker