22 lines
604 B
Objective-C
22 lines
604 B
Objective-C
//
|
|
// QXMineSongListCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/13.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXUserSongListModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXMineSongListCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *songNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftInfoLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLabel;
|
|
@property (nonatomic,strong)QXUserSongListModel *model;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImageView;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|