35 lines
876 B
Objective-C
Executable File
35 lines
876 B
Objective-C
Executable File
//
|
|
// Second_ZhuanPanView.h
|
|
// QiaoYuYueWan
|
|
//
|
|
// Created by 翟三美 on 2020/10/19.
|
|
// Copyright © 2020 QiaoYuYueWan. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SecondTurntableView.h"
|
|
#import "RCMicRoomViewModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface Second_ZhuanPanView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *whiteView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *oneBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *tenBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *baiBtn;
|
|
|
|
@property (nonatomic,strong) SecondTurntableView * turntable;//普通转盘
|
|
/*房间ID*/
|
|
@property(nonatomic, strong) NSString *rid;
|
|
@property (weak, nonatomic) IBOutlet UIView *moneyBgView;
|
|
|
|
+ (Second_ZhuanPanView *)initBoxWith:(RCMicRoomViewModel *)model;
|
|
|
|
/// show 出来
|
|
- (void)showOnView:(nullable UIView *)parent;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|