
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
31 lines
795 B
Objective-C
31 lines
795 B
Objective-C
//
|
|
// YMMineVerifIdentityView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSUInteger,XPMineVerifIdentityType ) {
|
|
XPMineVerifIdentityType_Phone, ///手机号
|
|
XPMineVerifIdentityType_Sms,///验证码
|
|
};
|
|
typedef void(^VerifIdentitySmsCodeBlock)(UIButton *sender);
|
|
@interface XPMineVerifIdentityView : UIView
|
|
///输入框
|
|
@property (nonatomic, strong, readonly) UITextField *contentTextField;
|
|
///发送验证码
|
|
@property (nonatomic, strong, readonly) UIButton *smsCodeButton;
|
|
///点击了smsCode
|
|
@property (nonatomic,copy) VerifIdentitySmsCodeBlock smsCodeBlock;
|
|
///
|
|
@property (nonatomic,assign) XPMineVerifIdentityType type;
|
|
///占位
|
|
@property (nonatomic, strong) NSString *placeholder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|