Media Picker: Allow multi selection of pictures #301

Multi selection in the media album is done.
This commit is contained in:
manuroe
2016-08-03 14:59:40 +02:00
parent 50cb95c537
commit 0f989049bd
4 changed files with 88 additions and 4 deletions
@@ -26,13 +26,21 @@
@protocol MediaAlbumContentViewControllerDelegate <NSObject>
/**
Tells the delegate that the user select an asset.
Tells the delegate that the user has selected an asset.
@param mediaAlbumContentViewController the `MediaAlbumContentViewController` instance.
@param asset the selected asset .
@param asset the selected asset.
*/
- (void)mediaAlbumContentViewController:(MediaAlbumContentViewController *)mediaAlbumContentViewController didSelectAsset:(PHAsset*)asset;
/**
Tells the delegate that the user has selected multiple assets.
@param mediaAlbumContentViewController the `MediaAlbumContentViewController` instance.
@param assets the selected assets.
*/
- (void)mediaAlbumContentViewController:(MediaAlbumContentViewController *)mediaAlbumContentViewController didSelectAssets:(NSArray<PHAsset*>*)assets;
@end
/**