UGCKitResult.h 518 B

12345678910111213141516
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import "UGCKitMedia.h"
  4. NS_ASSUME_NONNULL_BEGIN
  5. @interface UGCKitResult : NSObject
  6. @property (assign, nonatomic, getter=isCancelled) BOOL cancelled;
  7. @property (assign, nonatomic) NSInteger code;
  8. @property (strong, nonatomic, nullable) NSDictionary *info;
  9. @property (strong, nonatomic, nullable) UGCKitMedia *media;
  10. @property (strong, nonatomic, nullable) UIImage *coverImage;
  11. + (instancetype)cancelledResult;
  12. @end
  13. NS_ASSUME_NONNULL_END