20 lines
351 B
Objective-C
20 lines
351 B
Objective-C
//
|
|
// XPMineModifPayPwdView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineModifPayPwdView : UIView
|
|
///输入框
|
|
@property (nonatomic,strong, readonly) UITextField *contentTextField;
|
|
///占位
|
|
@property (nonatomic,copy) NSString *placeholder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|