Files
mier_ios/SweetParty/主类/RCMic/Room/Box/SPOpenConfirmAlert.h

27 lines
617 B
C
Raw Normal View History

2025-08-11 10:43:19 +08:00
//
// SPOpenConfirmAlert.h
// SweetParty
//
// Created by bj_szd on 2022/6/16.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface SPOpenConfirmAlert : UIView
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UIButton *closeBtn;
@property (weak, nonatomic) IBOutlet UILabel *contentLab;
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
@property (weak, nonatomic) IBOutlet UIButton *noTipsBtn;
@property (nonatomic, copy) void(^onConfirmBlock)(void);
- (void)onShowWithType:(NSInteger)type price:(NSInteger)price;
@end
NS_ASSUME_NONNULL_END