手机验证码登录

This commit is contained in:
冯硕
2021-09-08 21:29:47 +08:00
committed by fengshuo
parent dddf7cb014
commit dd3c8b3453
15 changed files with 747 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
//
// LoginInputView.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/8.
//
///登录模块 自定义输入框
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface LoginInputView : UIView
///输入框
@property (nonatomic,strong, readonly) UITextField *textField;
///占位的文字
@property (nonatomic,copy) NSString *placeHolder;
@end
NS_ASSUME_NONNULL_END