28 lines
664 B
Objective-C
28 lines
664 B
Objective-C
//
|
|
// DDYoungPwdViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/2.
|
|
//
|
|
|
|
#import "WLBaseViewController.h"
|
|
#import "DDPasswordTextView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDYoungPwdViewController : WLBaseViewController
|
|
@property (nonatomic, assign) BOOL openYoungMode;
|
|
@property (nonatomic, strong) UILabel * titleLabel;
|
|
|
|
/* codeview */
|
|
@property (nonatomic, strong) UILabel * verTitle;
|
|
|
|
@property (nonatomic, strong) DDPasswordTextView * passwordTextView;
|
|
|
|
/* 忘记密码找回密码 */
|
|
@property (nonatomic, strong) UIButton * findPsdButton;
|
|
|
|
@property (nonatomic, copy) NSString *verCode;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|