// // DRNineNineScrollChildViewController.h // YouHuiProject // // Created by xiaoxi on 2018/1/29. // Copyright © 2018年 kuxuan. All rights reserved. // #import "DRBaseViewController.h" #import "DRCollectionView.h" #import "DRNineCollectionView.h" @class DRNineNineScrollChannelModel,DRChildGoodModel; @protocol YHNineNineScrollChildViewControllerDelegate; @interface DRNineNineScrollChildViewController : DRBaseViewController @property (nonatomic, weak) id delegate; @property (nonatomic, strong) DRNineCollectionView *collectionView; @property (nonatomic, strong) DRNineNineScrollChannelModel *model; @property (nonatomic, assign) BOOL canScroll; @end @protocol YHNineNineScrollChildViewControllerDelegate @optional - (void)yh_NineNineScrollChildViewControllerDidSelectItem:(DRChildGoodModel *)model; @end