close
The Wayback Machine - https://web.archive.org/web/20221205150713/https://github.com/DeskConnect/DCImagePickerController
Skip to content

DeskConnect/DCImagePickerController

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code
This branch is 10 commits ahead, 1 commit behind conradev:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 

DCImagePickerController

DCImagePickerController is a drop-in replacement for UIImagePickerController that supports selecting multiple items. It is styled after, and nearly identical to, the UIImagePickerController found in iOS 7 and above. Because it depends on Photos.framework, DCImagePickerController requires iOS 8.

Example Usage

DCImagePickerController works exactly like UIImagePickerController, except without any camera functionality and with two new properties, minimumNumberOfItems and maximumNumberOfItems:

DCImagePickerController *imagePickerController = [[DCImagePickerController alloc] init];
imagePickerController.minimumNumberOfItems = 2;
imagePickerController.maximumNumberOfItems = 5;
imagePickerController.delegate = self;
imagePickerController.modalPresentationStyle = UIModalPresentationFormSheet;

[self presentViewController:imagePickerController animated:YES completion:nil];

License

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

About

Multiple-selecting replacement for UIImagePickerController

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%