CTImagePicker - iOS照片选择
jopen
9年前
CTImagePicker
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
question
- havn't number limit
- havn't preview function
Author
黄成, 632300630@qq.com
License
CTImagePicker is available under the MIT license. See the LICENSE file for more info.