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