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

26 lines
595 B
Objective-C
Executable File

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