// // KBChildHeaderView.h // YouHuiProject // // Created by 小花 on 2018/1/18. // Copyright © 2018年 kuxuan. All rights reserved. // #import #import "KBChildCategoryModel.h" @protocol YHChildHeaderViewDelegate - (void)YHChildHeaderViewDidSelectedIndex:(NSInteger)index model:(KBChildCategoryModel *)model; @end @interface KBChildHeaderView : UIView - (instancetype)initWithFrame:(CGRect)frame delegete:(id)delegate; - (void)setChannelDataArr:(NSArray *)dataArr; @end #pragma mark ------------ @interface YHChildTypeCell : UICollectionViewCell @property (nonatomic, strong) KBChildCategoryModel *model; @end