123456789101112131415161718192021222324252627 |
- //
- // PCSAutherView.h
- // LenzSDK
- //
- // Created by lr on 2023/4/11.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSInteger, PCSAuthType) {
- PCSAuthPhoneAndMir,
- PCSAuthPhone,
- PCSAuthMir
-
- };
- @interface PCSAutherView : UIView
- - (void)showAutherWith:(PCSAuthType)type;
- @end
- NS_ASSUME_NONNULL_END
|