28 lines
728 B
Objective-C
Executable File
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
|