38 lines
1.3 KiB
Objective-C
38 lines
1.3 KiB
Objective-C
//
|
|
// DDMyInformationHeaderView.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/5/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "DDMyInfoGotoRoomView.h"
|
|
#import "DDMyInfoInsertDynamicView.h"
|
|
#import "DDMyAgeView.h"
|
|
#import "UserInfoModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DDMyInformationHeaderView : UIView
|
|
@property (nonatomic,strong) UIView *shadowView;
|
|
@property (nonatomic,strong) UserInfoModel *model;
|
|
@property (nonatomic,assign) float bgImageheight;
|
|
@property (nonatomic,strong) UIImageView *bgImageView;
|
|
@property (nonatomic,strong) UILabel *nameLabel;
|
|
@property (nonatomic,strong) DDMyAgeView *ageView;
|
|
@property (nonatomic,strong) UILabel *fansLabel;
|
|
@property (nonatomic,strong) UILabel *followLabel;
|
|
//@property (nonatomic,strong) UIButton *idBtn;
|
|
//@property (nonatomic,strong) UIView *contentBgView;
|
|
//@property (nonatomic,strong) UILabel *titleLabel;
|
|
//@property (nonatomic,strong) UILabel *contentLabel;
|
|
@property (nonatomic,strong) UIImageView *vipImage;
|
|
@property (nonatomic,strong) UIView *bottomView;
|
|
@property (nonatomic,strong) DDMyInfoGotoRoomView *goLiveView;
|
|
@property (nonatomic,strong) DDMyInfoInsertDynamicView *addDynamicView;
|
|
- (instancetype)initWithFrame:(CGRect)frame ;
|
|
@property (nonatomic,copy) void (^didReleaseDynamic)(void);
|
|
-(void)updataPersonInfoWithModel:(UserInfoModel *)model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|