CTImagePicker - iOS照片選擇

jopen 8年前發布 | 9K 次閱讀 iOS開發 移動開發 CTImagePicker

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

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!