32 lines
716 B
C
32 lines
716 B
C
|
|
//
|
||
|
|
// QXDirectSetScaleView.h
|
||
|
|
// IsLandVoice
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/3/6.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "QXDirectDelegate.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
@interface QXDirectSetScaleView : UIView
|
||
|
|
@property (nonatomic,strong)NSString *userId;
|
||
|
|
@property (nonatomic,strong)NSString *roomId;
|
||
|
|
|
||
|
|
@property (nonatomic,assign)BOOL isGiveCoin;
|
||
|
|
|
||
|
|
/// 头条
|
||
|
|
@property (nonatomic,assign)BOOL isHeadline;
|
||
|
|
/// 分钟
|
||
|
|
@property (nonatomic,strong)NSString* minutes;
|
||
|
|
/// 金币
|
||
|
|
@property (nonatomic,strong)NSString* coin;
|
||
|
|
/// 当前所需金币
|
||
|
|
@property (nonatomic,strong)NSString* now_coin;
|
||
|
|
|
||
|
|
@property (nonatomic,weak)id<QXDirectDelegate>delegate;
|
||
|
|
-(void)showInView:(UIView*)view;
|
||
|
|
-(void)hide;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|