UGCKitMediaPickerViewControllerPrivate.h 702 B

123456789101112131415161718
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import "UGCKitAssetsViewController.h"
  3. #import "UGCKitMediaPickerViewController.h"
  4. @interface UGCKitMediaPickerViewController () {
  5. UGCKitMediaPickerConfig *_config;
  6. UGCKitTheme * _theme;
  7. }
  8. @property (nonatomic, strong) NSBundle *assetBundle;
  9. @property (nonatomic, weak) UGCKitAssetsViewController *assetViewController;
  10. @property (nonatomic, assign) BOOL showsNumberOfSelectedAssets;
  11. @property (nonatomic, assign) BOOL allowsMultipleSelection;
  12. @property (nonatomic, assign) NSUInteger minimumNumberOfSelection;
  13. @property (nonatomic, assign) NSUInteger maximumNumberOfSelection;
  14. @property (nonatomic, assign) UGCKitMediaType mediaType;
  15. @end