Files
yinmeng-ios/xplan-ios/Main/Login/View/CustomView/LoginForgetEditView.h
2021-09-10 17:04:18 +08:00

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