CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Jan 2018 |
Maintained by dd2333.
iOS library that provides for multiple image selection.

Download DDPhotoAlbum and try out the included iPhone example apps
#import "DDPhotoAlbum.h"
DDPhotoAlbumViewController *photoAlbumViewController = [[DDPhotoAlbumViewController alloc]init];
photoAlbumViewController.maxPhotos = self.maxPhotos;
photoAlbumViewController.isShowCamera = self.isShowCamera;
[photoAlbumViewController setPreLoadingImages:_thumbnailImages imageUrls:_imageUrls];
[photoAlbumViewController setDidSelectedBlock:^(NSArray *images,NSArray *thumbnailImages,NSArray *imagesUrl) {
_thumbnailImages = thumbnailImages;
_imageUrls = imagesUrl;
//handle
}];
[photoAlbumViewController setDidCancelBlock:^{
//handle
}];
[self presentViewController:photoAlbumViewController animated:YES completion:nil];
DDPhotoAlbum is released under the MIT license. See LICENSE for details.