29 lines
617 B
C
29 lines
617 B
C
|
|
//
|
||
|
|
// QXSingerConfigView.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/6/19.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXRoomSettingView.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXSingerConfigView : UIView
|
||
|
|
-(void)showInView:(UIView *)view;
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface QXSliser : UISlider
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
|
||
|
|
@interface QXVoiceEffectCell : UICollectionViewCell
|
||
|
|
@property (nonatomic,strong)UILabel *titleLabel;
|
||
|
|
@property (nonatomic,strong)UIImageView *effectImageView;
|
||
|
|
@property (nonatomic,strong)UIView *coverView;
|
||
|
|
@property (nonatomic,strong)UIButton *selecteBtn;
|
||
|
|
@property (nonatomic,strong)QXRoomSettingModel *model;
|
||
|
|
@end
|
||
|
|
NS_ASSUME_NONNULL_END
|