33 lines
1.1 KiB
Objective-C
33 lines
1.1 KiB
Objective-C
//
|
|
// DDEditMyInfoViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/5/29.
|
|
//
|
|
|
|
#import "WLBaseViewController.h"
|
|
#import "UserInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDEditMyInfoViewController : WLBaseViewController<UITextFieldDelegate>
|
|
@property (nonatomic, strong) DDAnimateImageView * headerImgV;
|
|
@property (nonatomic, strong) UILabel * headLabel;
|
|
@property (nonatomic, strong) UILabel * nicknameLabel;
|
|
@property (nonatomic, strong) UILabel * sexLabel;
|
|
@property (nonatomic, strong) UIButton * sexButton;
|
|
|
|
@property (nonatomic, strong) UILabel * singLabel;
|
|
@property (nonatomic, strong) UITextField * nicknameTextfield;
|
|
@property (nonatomic, strong) UITextField * singTextfield;
|
|
|
|
|
|
@property (nonatomic, copy) NSString * sexStr;//性别
|
|
@property (nonatomic, copy) NSString * birthdayContent;
|
|
@property (nonatomic, copy) NSString * avator;//头像
|
|
@property (nonatomic, copy) NSString * nickName;//昵称
|
|
@property (nonatomic, copy) NSString * singer;//签名
|
|
@property (nonatomic, strong) UserInfoModel * personModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|