Files
yuyin_ios/SweetParty/主类/Mine/View/SPFocusFansCell.h
2025-08-08 11:05:33 +08:00

28 lines
728 B
Objective-C
Executable File

//
// SPFocusFansCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/8.
//
#import <UIKit/UIKit.h>
#import "SPFocusFansModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPFocusFansCell : 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 (weak, nonatomic) IBOutlet UIImageView *onlineStatus;
@property (copy, nonatomic) void (^refreshAction)(void);
- (void)onUpdateSPFocusFansCell:(SPFocusFansModel *)model type:(NSInteger)type;
@end
NS_ASSUME_NONNULL_END