CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Nut Hancharoernkit.
CombinationPickerController is image picker use uicollection view.
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];