PCSAutherView.h 340 B

123456789101112131415161718192021222324252627
  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. @interface PCSAutherView : UIView
  15. - (void)showAutherWith:(PCSAuthType)type;
  16. @end
  17. NS_ASSUME_NONNULL_END