30 lines
938 B
C
30 lines
938 B
C
|
|
//
|
||
|
|
// QXRoomSongListCell.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/6/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXSongListModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXRoomSongListCell : UITableViewCell
|
||
|
|
@property (nonatomic,assign)BOOL isSearch;
|
||
|
|
@property (nonatomic,assign)BOOL isBgMusic;
|
||
|
|
@property (nonatomic,assign)BOOL isCompere;
|
||
|
|
@property (nonatomic,strong) QXSongListModel *model;
|
||
|
|
@property (nonatomic,strong) NSString *roomId;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *coverImageView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *songNameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *posterLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *endBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *upBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *userNameLabel;
|
||
|
|
@property (nonatomic,copy)void(^moveSuccessBlock)(void);
|
||
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|