21 lines
425 B
Objective-C
21 lines
425 B
Objective-C
//
|
|
// BottleShaiXuanCellView.h
|
|
// TreeHole
|
|
//
|
|
// Created by 郑创权 on 2022/10/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BottleShaiXuanCellView : UIView
|
|
|
|
@property (nonatomic, strong)NSString* titleStr;
|
|
@property (nonatomic, strong)NSArray* selectContentArray;
|
|
@property (nonatomic ,copy) void (^selectContentStrBlockClick)(NSString* titleStr,NSString* selectStr);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|