23 lines
610 B
C
23 lines
610 B
C
|
|
//
|
||
|
|
// QXRoomBgMusicView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/6/23.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXSongListModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXRoomBgMusicView : UIView
|
||
|
|
@property (nonatomic,strong)void(^moreActionBlock)(void);
|
||
|
|
@property (nonatomic,strong)void(^nextActionBlock)(void);
|
||
|
|
@property (nonatomic,strong)void(^pauseActionBlock)(UIButton* playBtn);
|
||
|
|
@property (nonatomic,strong)void(^closeActionBlock)(void);
|
||
|
|
@property (nonatomic,strong)QXSongListModel *songModel;
|
||
|
|
@property (nonatomic,assign)NSUInteger progress;
|
||
|
|
-(void)showInView:(UIView *)view;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|