新UI马甲包

HCNineNineScrollViewController.h 664B

123456789101112131415161718192021222324
  1. //
  2. // HCNineNineScrollViewController.h
  3. // hc
  4. //
  5. // Created by xiaoxi on 2018/1/17.
  6. // Copyright © 2018年 hc. All rights reserved.
  7. //
  8. #import "HCBaseViewController.h"
  9. @class HCChildGoodModel;
  10. @protocol YHNineNineScrollViewControllerDelegate;
  11. @interface HCNineNineScrollViewController : HCBaseViewController
  12. @property (nonatomic, weak) id<YHNineNineScrollViewControllerDelegate> delegate;
  13. @property (nonatomic, assign) BOOL childCanScroll;
  14. @property (nonatomic, strong) NSMutableArray *childArr;
  15. @end
  16. @protocol YHNineNineScrollViewControllerDelegate <NSObject>
  17. @optional
  18. - (void)yh_NineNineScrollViewControllerDidSelectItem:(HCChildGoodModel *)model;
  19. @end