21 lines
373 B
C
21 lines
373 B
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;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|