Files
2025-08-08 11:05:33 +08:00

26 lines
578 B
Objective-C
Executable File

//
// YYSetHostCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/8.
//
#import <UIKit/UIKit.h>
#import "SPFocusFansModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface YYSetHostCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UIButton *focusBtn;
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
@property (weak, nonatomic) IBOutlet UIImageView *sexImgV;
@property (nonatomic, strong) SPFocusFansModel *model;
@end
NS_ASSUME_NONNULL_END