34 lines
874 B
Objective-C
Executable File
34 lines
874 B
Objective-C
Executable File
//
|
|
// RoomSongSettingView.h
|
|
// romantic
|
|
//
|
|
// Created by 八角_马方圆 on 2022/1/6.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RCMicRoomViewModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSongSettingView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *displayMaskView;
|
|
@property (weak, nonatomic) IBOutlet UIView *whiteView;
|
|
@property (weak, nonatomic) IBOutlet UISwitch *erfanSwitch;
|
|
@property (weak, nonatomic) IBOutlet UISlider *renshengSlider;
|
|
@property (weak, nonatomic) IBOutlet UISlider *banzouSlider;
|
|
|
|
@property (weak, nonatomic) IBOutlet UISwitch *originSwitch;
|
|
@property (weak, nonatomic) IBOutlet UIButton *playBtn;
|
|
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
|
|
@property (nonatomic, strong) RCMicRoomViewModel *viewModel;
|
|
|
|
- (void)onShow;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|