25 lines
511 B
Objective-C
25 lines
511 B
Objective-C
//
|
|
// 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;
|
|
///显示前面的文字
|
|
@property (nonatomic,copy) NSString *title;
|
|
///最大的长度
|
|
@property (nonatomic,assign) NSInteger maxLength;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|