Files
yuyin_ios/SweetParty/主类/音悦新增/仲夏夜梦曲/ZXYChooseNumView.h

27 lines
620 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// 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