新UI马甲包

HCNineNineScrollChildViewController.h 859B

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