27 lines
620 B
Objective-C
27 lines
620 B
Objective-C
//
|
|
// ZXYChooseNumView.h
|
|
// SweetParty
|
|
//
|
|
// Created by MAC on 2024/5/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZXYChooseNumView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *titleImgV;
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
@property (weak, nonatomic) IBOutlet UITextField *numTF;
|
|
|
|
@property (nonatomic, copy) void(^onConfirmBlock)(void);
|
|
|
|
- (void)onUpdateWith:(NSInteger)type rid:(NSString *)rid;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|