Files
yuyin_ios/SweetParty/主类/Mine/View/SPMineHeaderView.h

39 lines
1.3 KiB
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// SPMineHeaderView.h
// SweetParty
//
// Created by bj_szd on 2022/6/2.
//
#import <UIKit/UIKit.h>
#import "SPMineModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPMineHeaderView : UIView
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UIImageView *gxImgV;
@property (weak, nonatomic) IBOutlet UIImageView *mlImgV;
@property (weak, nonatomic) IBOutlet UIImageView *jueweiImgV;
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
@property (weak, nonatomic) IBOutlet UILabel *focusLab;
@property (weak, nonatomic) IBOutlet UILabel *fansLab;
@property (weak, nonatomic) IBOutlet UILabel *collectLab;
@property (weak, nonatomic) IBOutlet UILabel *CPLab;
@property (weak, nonatomic) IBOutlet UIView *focusView;
@property (weak, nonatomic) IBOutlet UIView *fansView;
@property (weak, nonatomic) IBOutlet UIView *collectView;
@property (weak, nonatomic) IBOutlet UIView *CPView;
@property (weak, nonatomic) IBOutlet UIButton *vipBtn;
@property (weak, nonatomic) IBOutlet UIView *btnsBgView_1;
@property (weak, nonatomic) IBOutlet UIView *btnsBgView_2;
@property (weak, nonatomic) IBOutlet UITableView *tableView;
@property (nonatomic, strong) SPMineModel *model;
@end
NS_ASSUME_NONNULL_END