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