// // DRNineNineScrollViewController.h // YouHuiProject // // Created by xiaoxi on 2018/1/17. // Copyright © 2018年 kuxuan. All rights reserved. // #import "DRBaseViewController.h" @class DRChildGoodModel; @protocol YHNineNineScrollViewControllerDelegate; @interface DRNineNineScrollViewController : DRBaseViewController @property (nonatomic, weak) id delegate; @property (nonatomic, assign) BOOL childCanScroll; @property (nonatomic, strong) NSMutableArray *childArr; @end @protocol YHNineNineScrollViewControllerDelegate @optional - (void)yh_NineNineScrollViewControllerDidSelectItem:(DRChildGoodModel *)model; @end