《省钱达人》与《猎豆优选》UI相同版。域名tbk

DRChildHeaderView.h 678B

123456789101112131415161718192021222324252627282930
  1. //
  2. // DRChildHeaderView.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 "DRChildCategoryModel.h"
  10. @protocol YHChildHeaderViewDelegate <NSObject>
  11. - (void)YHChildHeaderViewDidSelectedIndex:(NSInteger)index model:(DRChildCategoryModel *)model;
  12. @end
  13. @interface DRChildHeaderView : 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) DRChildCategoryModel *model;
  20. @end