天天省钱快报

KBNineNineScrollChildViewController.h 874B

123456789101112131415161718192021222324252627
  1. //
  2. // KBNineNineScrollChildViewController.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/29.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBBaseViewController.h"
  9. #import "KBCollectionView.h"
  10. #import "KBNineCollectionView.h"
  11. @class KBNineNineScrollChannelModel,KBChildGoodModel;
  12. @protocol YHNineNineScrollChildViewControllerDelegate;
  13. @interface KBNineNineScrollChildViewController : KBBaseViewController
  14. @property (nonatomic, weak) id<YHNineNineScrollChildViewControllerDelegate> delegate;
  15. @property (nonatomic, strong) KBNineCollectionView *collectionView;
  16. @property (nonatomic, strong) KBNineNineScrollChannelModel *model;
  17. @property (nonatomic, assign) BOOL canScroll;
  18. @end
  19. @protocol YHNineNineScrollChildViewControllerDelegate <NSObject>
  20. @optional
  21. - (void)yh_NineNineScrollChildViewControllerDidSelectItem:(KBChildGoodModel *)model;
  22. @end