mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 14:16:59 +02:00
Media Picker: Allow multi selection of pictures #301
Multi selection in the media album is done.
This commit is contained in:
@@ -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
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user