BaseViewTapGestureDelegate.h 376 B

12345678910111213141516171819
  1. //
  2. // BaseViewTapGestureDelegate.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/30.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PCSBaseViewController;
  10. @interface BaseViewTapGestureDelegate : NSObject <UIGestureRecognizerDelegate>
  11. @property (nonatomic, weak) PCSBaseViewController* controller;
  12. @end
  13. NS_ASSUME_NONNULL_END