UGCKitCutViewController.h 389 B

1234567891011121314
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import <UIKit/UIKit.h>
  3. #import <AVFoundation/AVFoundation.h>
  4. #import "UGCKitResult.h"
  5. #import "UGCKitTheme.h"
  6. @interface UGCKitCutViewController : UIViewController
  7. - (instancetype)initWithMedia:(UGCKitMedia *)media theme:(UGCKitTheme *)theme;
  8. @property (copy, nonatomic) void(^completion)(UGCKitResult *result, int rotation);
  9. @end