UGCKitAssetLoadingController.h 605 B

1234567891011121314151617181920
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import <Photos/Photos.h>
  4. #import "UGCKitResult.h"
  5. #import "UGCKitTheme.h"
  6. typedef NS_ENUM(NSInteger,AssetType){
  7. AssetType_Video,
  8. AssetType_Image,
  9. };
  10. @interface UGCKitAssetLoadingController : UIViewController
  11. @property (nonatomic, strong) NSMutableArray<AVAsset*> *avAssets;
  12. @property (copy, nonatomic) void (^completion)(UGCKitResult *result);
  13. @property BOOL combineVideos;
  14. - (instancetype)initWithTheme:(UGCKitTheme *)theme;
  15. - (void)exportAssetList:(NSArray<PHAsset *> *)assets assetType:(AssetType)assetType;
  16. @end