25 lines
502 B
C
25 lines
502 B
C
|
|
//
|
||
|
|
// YYRoomSetBiliAlert.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYRoomSetBiliAlert : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *biliLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^onCompleteBlock)(NSInteger ratio);
|
||
|
|
|
||
|
|
@property (nonatomic, copy) NSString *currentRatio;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|