CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.

CombinationPickerController 0.0.92

CombinationPickerController 0.0.92

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Nut Hancharoernkit.



  • By
  • Opendream

CombinationPickerController is image picker use uicollection view.

  • can select only one image
  • can custom you camera else use default
  • support only portrait

Use cocoapods

pod 'CombinationPickerController'

How to use

Add delegate

<ODMCombinationPickerViewControllerDelegate>

Create and present ODMCombinationPickerViewController

ODMCombinationPickerViewController *vc = [[ODMCombinationPickerViewController alloc] initWithCombinationPickerNib];
[vc setDelegate:self];
[self presentViewController:vc animated:YES completion:nil];

Delegate function

- (void)imagePickerController:(ODMCombinationPickerViewController *)picker didFinishPickingAsset:(ALAsset *)asset;

- (void)imagePickerControllerDidCancel:(ODMCombinationPickerViewController *)picker;

Custom camera controller

YourCameraController *cameraController = [YourCameraController new]; 

[vc setCameraController:cameraController];