Skip to content

huangcheng1/CTImagePicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.