Files
featherVoice/QXLive/Mine(音域)/View/歌单列表/QXMineSongListCell.h
2025-11-21 16:17:05 +08:00

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