123456789101112131415161718192021222324 |
- //
- // HCNineNineScrollViewController.h
- // hc
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import "HCBaseViewController.h"
- @class HCChildGoodModel;
- @protocol YHNineNineScrollViewControllerDelegate;
- @interface HCNineNineScrollViewController : HCBaseViewController
- @property (nonatomic, weak) id<YHNineNineScrollViewControllerDelegate> delegate;
- @property (nonatomic, assign) BOOL childCanScroll;
- @property (nonatomic, strong) NSMutableArray *childArr;
- @end
- @protocol YHNineNineScrollViewControllerDelegate <NSObject>
- @optional
- - (void)yh_NineNineScrollViewControllerDidSelectItem:(HCChildGoodModel *)model;
- @end
|