// // HCNineNineScrollChildViewController.h // hc // // Created by xiaoxi on 2018/1/29. // Copyright © 2018年 hc. All rights reserved. // #import "HCBaseViewController.h" #import "HCCollectionView.h" #import "HCNineCollectionView.h" @class HCNineNineScrollChannelModel,HCChildGoodModel; @protocol YHNineNineScrollChildViewControllerDelegate; @interface HCNineNineScrollChildViewController : HCBaseViewController @property (nonatomic, weak) id delegate; @property (nonatomic, strong) HCNineCollectionView *collectionView; @property (nonatomic, strong) HCNineNineScrollChannelModel *model; @property (nonatomic, assign) BOOL canScroll; @end @protocol YHNineNineScrollChildViewControllerDelegate @optional - (void)yh_NineNineScrollChildViewControllerDidSelectItem:(HCChildGoodModel *)model; @end