32 lines
788 B
Objective-C
32 lines
788 B
Objective-C
//
|
|
// LoginForgetEditView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/10.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef enum : NSUInteger {
|
|
LoginForgetEditViewTypeNormal, // 普通类型
|
|
LoginForgetEditViewTypeSms, // 短信验证码类型
|
|
LoginForgetEditViewTypePassword, ///密码
|
|
} LoginForgetEditViewType;
|
|
|
|
@interface LoginForgetEditView : UIView
|
|
/** textField */
|
|
@property (nonatomic, strong, readonly) UITextField *textField;
|
|
/** rightButton */
|
|
@property (nonatomic, strong, readonly) UIButton *rightButton;
|
|
/** 验证码 */
|
|
@property (nonatomic, strong, readonly) UIButton *authCodeButton;
|
|
///类型
|
|
@property (nonatomic, assign) LoginForgetEditViewType type;
|
|
///展位图
|
|
@property (nonatomic,copy) NSString *placeholder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|