22 lines
352 B
Objective-C
22 lines
352 B
Objective-C
//
|
|
// MineModifPayPwdView.h
|
|
// yinmeng-ios
|
|
//
|
|
// Created by 触海 on 2023/11/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MineModifPayPwdView : UIView
|
|
|
|
///输入框
|
|
@property (nonatomic,strong, readonly) UITextField *contentTextField;
|
|
///占位
|
|
@property (nonatomic,copy) NSString *placeholder;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|