PCSAutherView.h 443 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PCSAutherView.h
  3. // LenzSDK
  4. //
  5. // Created by lr on 2023/4/11.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef NS_ENUM(NSInteger, PCSAuthType) {
  10. PCSAuthPhoneAndMir,
  11. PCSAuthPhone,
  12. PCSAuthMir
  13. };
  14. typedef void(^PCSAutherViewCloseBlock)(void);
  15. @interface PCSAutherView : UIView
  16. @property (nonatomic)PCSAutherViewCloseBlock closeBlock;
  17. - (void)showAutherWith:(PCSAuthType)type;
  18. @end
  19. NS_ASSUME_NONNULL_END