PreviewSingleViewController.h 708 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PreviewSingleViewController.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/31.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PCSButton;
  10. @protocol OperationNodeProtocol;
  11. @interface PreviewSingleViewController : UIViewController
  12. @property (nonatomic, strong) IBOutlet UIImageView* imageView;
  13. @property (nonatomic, strong) IBOutlet PCSButton* backButton;
  14. @property (nonatomic, strong) IBOutlet PCSButton* saveButton;
  15. @property (nonatomic, strong) UIImage* image;
  16. @property (nonatomic, strong) id<OperationNodeProtocol> singleModeNode;
  17. - (IBAction)backButtonTouchUpInside:(id)sender;
  18. - (IBAction)saveButtonTouchUpInside:(id)sender;
  19. @end
  20. NS_ASSUME_NONNULL_END