天天省钱快报

KBChildHeaderView.h 678B

123456789101112131415161718192021222324252627282930
  1. //
  2. // KBChildHeaderView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/18.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KBChildCategoryModel.h"
  10. @protocol YHChildHeaderViewDelegate <NSObject>
  11. - (void)YHChildHeaderViewDidSelectedIndex:(NSInteger)index model:(KBChildCategoryModel *)model;
  12. @end
  13. @interface KBChildHeaderView : UIView
  14. - (instancetype)initWithFrame:(CGRect)frame delegete:(id<YHChildHeaderViewDelegate>)delegate;
  15. - (void)setChannelDataArr:(NSArray *)dataArr;
  16. @end
  17. #pragma mark ------------
  18. @interface YHChildTypeCell : UICollectionViewCell
  19. @property (nonatomic, strong) KBChildCategoryModel *model;
  20. @end