24 lines
729 B
Objective-C
24 lines
729 B
Objective-C
//
|
|
// DDMyInformationProfileViewController.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/6/28.
|
|
//
|
|
|
|
#import "DDBasePagerHomeListViewController.h"
|
|
#import "UserInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDMyInformationProfileViewController : DDBasePagerHomeListViewController
|
|
@property (nonatomic,strong) UIButton * myIDBtn;
|
|
@property (nonatomic,strong) UIButton * myAgeBtn;
|
|
@property (nonatomic,strong) UIButton * myConsBtn;
|
|
@property (nonatomic,strong) UIView * myContentBgView;
|
|
@property (nonatomic,strong) UILabel * titleLabel;
|
|
@property (nonatomic,strong) UILabel * myContentLabel;
|
|
@property (nonatomic,copy) NSString * user_id;
|
|
@property (nonatomic,strong) UserInfoModel * personModel;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|