Skip to content

mohit5189/CustomImagePicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

CustomImagePicker

========================

CustomImagePicker is a block based implementation of UIImagePickerController. Purpose of this library is to help developer to pick the image with minimum number of lines.

For implementation you need to import MImagePickerController:

#import "MImagePickerController.h"

Now call method as follows:

    MImagePickerController *controller = [[MImagePickerController alloc] init];
    controller.allowEditing = YES;

    [controller pickImageFromGalleryWithCompletionBlock:^(UIImage *image) {
    _imageView.image = image;
    } andFailureBlock:^(NSError *error) {

}];

About

Custom Image Picker with block. Just write one line of code and leave further processing on library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors