UGCKitAssetLoader.h 372 B

1234567891011121314
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <Foundation/Foundation.h>
  3. #import <Photos/Photos.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. @interface UGCKitAssetLoader : NSObject
  6. @property (strong, nonatomic) NSArray<PHFetchResult *> *fetchResults;
  7. @property (nonatomic, copy) NSArray *assetCollections;
  8. - (void)load:(void(^)(void))completion;
  9. @end
  10. NS_ASSUME_NONNULL_END