// // CategoryPickerView.h // BuguLive // // Created by qitewei on 2025/8/20. // Copyright © 2025 xfg. All rights reserved. // #import #import "IndustryCategoryModel.h" NS_ASSUME_NONNULL_BEGIN @protocol CategoryPickerViewDelegate - (void)categoryPickerView:(UIView *)pickerView didSelectCategory:(IndustryCategoryModel *)category; @end @interface CategoryPickerView : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, strong) NSArray *categories; - (void)showInView:(UIView *)parentView fromRect:(CGRect)rect; - (void)hide; @end NS_ASSUME_NONNULL_END