25 lines
497 B
Objective-C
25 lines
497 B
Objective-C
//
|
|
// ZXYBuyView.h
|
|
// SweetParty
|
|
//
|
|
// Created by MAC on 2024/5/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZXYBuyView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
|
@property (weak, nonatomic) IBOutlet UITextField *numTF;
|
|
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
|
|
|
|
@property (nonatomic, copy) void(^onBuySuccessBlock)(NSString *integral, NSString *airship);
|
|
|
|
@property (nonatomic, copy) NSString *rid;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|