Files
2025-08-08 11:05:33 +08:00

30 lines
517 B
Objective-C

//
// WLStakeAlertView.h
// romantic
//
// Created by Xmac on 2024/4/16.
// Copyright © 2024 romantic. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface WLStakeAlertView : UIView
@property (nonatomic, copy) void(^onConfirmBlock)(NSInteger num);
@property (nonatomic, copy) NSString *type;
@property (nonatomic, copy) NSString *unitPrice;
@property (nonatomic, copy) NSString *remainPrice;
- (void)show;
- (void)onPopupWithSize:(CGSize)size;
@end
NS_ASSUME_NONNULL_END