-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathWPMediaPickerOptions.h
56 lines (44 loc) · 1.75 KB
/
WPMediaPickerOptions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#import <Foundation/Foundation.h>
#import "WPMediaCollectionDataSource.h"
@interface WPMediaPickerOptions: NSObject<NSCopying>
/**
If YES the picker will show a cell that allows capture of new media, that can be used immediatelly
*/
@property (nonatomic, assign) BOOL allowCaptureOfMedia;
/**
If YES and the media picker allows media capturing, it will use the front camera by default when possible
*/
@property (nonatomic, assign) BOOL preferFrontCamera;
/**
If YES the picker will show the most recent items on the top left. If not set it will show on the bottom right. Either way it will always scroll to the most recent item when showing the picker.
*/
@property (nonatomic, assign) BOOL showMostRecentFirst;
/**
* Sets what kind of elements the picker show: allAssets, allPhotos, allVideos
*/
@property (nonatomic, assign) WPMediaType filter;
/**
If YES the picker will allow the selection of multiple items. By default this value is YES.
*/
@property (nonatomic, assign) BOOL allowMultipleSelection;
/**
If YES the picker will scroll media vertically. Defaults to YES (vertical).
*/
@property (nonatomic, assign) BOOL scrollVertically;
/**
If YES the picker will show a search bar on top.
*/
@property (nonatomic, assign) BOOL showSearchBar;
/**
If YES, the picker will use a bottom action bar instead of the top right action button for multiple selection. By default the value is YES.
*/
@property (nonatomic, assign) BOOL showActionBar;
/**
A list of UTTypes where the picker cell should show a badge showing the file type. (i.e. UTTypeGif)
*/
@property (nonatomic, strong, nonnull) NSSet<NSString *> *badgedUTTypes;
/**
The status bar style to use for the media picker.
*/
@property (nonatomic, assign) UIStatusBarStyle preferredStatusBarStyle;
@end