// // KBCategorySelectView.h // YouHuiProject // // Created by 小花 on 2018/10/9. // Copyright © 2018年 kuxuan. All rights reserved. // #import #import "KBBaseViewController.h" #import "KBCategoryChannelModel.h" NS_ASSUME_NONNULL_BEGIN @protocol CategoryPopViewDelegate - (void)CategoryPopViewDidSelectedIndex:(NSInteger)index; @end @interface KBCategorySelectView : UIView - (instancetype)initWithmodels:(NSArray *)models delegate:(id)delegate selectedIndex:(NSInteger)index superVc:(KBBaseViewController *)superVc; - (void)showInView:(UIView *)view belowSubView:(UIView *)subView; @property (nonatomic, weak) id delegate; @end #pragma mark ------------ @interface CategoryPopTypeCell : UICollectionViewCell @property (nonatomic, strong) UILabel *label; @property (nonatomic, strong) KBCategoryChannelModel *model; @end NS_ASSUME_NONNULL_END