123456789101112131415161718192021222324 |
- //
- // 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<YHNineNineScrollViewControllerDelegate> delegate;
- @property (nonatomic, assign) BOOL childCanScroll;
- @property (nonatomic, strong) NSMutableArray *childArr;
- @end
- @protocol YHNineNineScrollViewControllerDelegate <NSObject>
- @optional
- - (void)yh_NineNineScrollViewControllerDidSelectItem:(KBChildGoodModel *)model;
- @end
|