TUICaptureVideoPreviewViewController.h 644 B

12345678910111213141516171819202122
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. #import <UIKit/UIKit.h>
  4. NS_ASSUME_NONNULL_BEGIN
  5. @interface TUICaptureVideoPreviewViewController : UIViewController
  6. @property(nonatomic) void (^commitBlock)(void);
  7. @property(nonatomic) void (^cancelBlock)(void);
  8. - (instancetype)initWithVideoURL:(NSURL *)url NS_DESIGNATED_INITIALIZER;
  9. - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
  10. - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE;
  11. - (instancetype)init NS_UNAVAILABLE;
  12. @end
  13. NS_ASSUME_NONNULL_END