28 lines
862 B
C
28 lines
862 B
C
|
|
//
|
||
|
|
// QXExpansionCell.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/5/27.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXUserModel.h"
|
||
|
|
#import "QXSeatHeaderView.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXExpansionCell : UITableViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *bgView;
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *avatarImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *levelImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *ageLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *followBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *imgsBgView;
|
||
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgsBgViewHeightCon;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sexImageView;
|
||
|
|
@property (nonatomic, strong) QXUserHomeModel *model;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|