# DKImagePickerController-OC
**Repository Path**: twios/DKImagePickerController-OC
## Basic Information
- **Project Name**: DKImagePickerController-OC
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2017-09-21
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# DKImagePickerController-OC


参考[swift](https://github.com/zhangao0086/DKImagePickerController)写了oc的
## Description
It's a Facebook style Image Picker Controller by Swift. It uses [DKCamera][DKCamera] instead of `UIImagePickerController`.
### Features
* Supports both single and multiple selection.
* Supports filtering albums and sorting by type.
* Supports landscape and iPad and orientation switching.
* Supports iCloud.
* Supports UIAppearance.
* Customizable camera.
* Customizable UI.
* Customizable UICollectionViewLayout.
* Supports footer view.
## Requirements
* iOS 8.0+
* ARC
## Getting Started
#### Initialization and presentation
```
DKImagePickerController * pickerController = [DKImagePickerController new];
[pickerController setDidSelectAssets:^(NSArray * assets){
NSLog(@"%@", assets);
}];
[self presentViewController:pickerController animated:YES completion:nil];
````