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