2025-11-28 22:43:06 +08:00
|
|
|
//
|
|
|
|
|
// QXBodyPriceRuleView.h
|
|
|
|
|
// QXLive
|
|
|
|
|
//
|
|
|
|
|
// Created by 启星 on 2025/11/25.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
@interface QXBodyPriceRuleView : UIView
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *currentPriceLabel;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *beyoundPriceLabel;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *recievePriceLabel;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *realPriceLabel;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *commitBtn;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *closeBtn;
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *bgView;
|
2025-12-04 14:11:00 +08:00
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *bodyPriceLabel;
|
|
|
|
|
+(void)showInView:(UIView*)view currentBodyValue:(NSString*)currentBodyValue coin:(NSString*)coin bodyValue:(NSString*)bodyValue;
|
2025-11-28 22:43:06 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|