123456789101112131415161718192021222324252627 |
- //
- // HCNineNineScrollChildViewController.h
- // hc
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import "HCBaseViewController.h"
- #import "HCCollectionView.h"
- #import "HCNineCollectionView.h"
- @class HCNineNineScrollChannelModel,HCChildGoodModel;
- @protocol YHNineNineScrollChildViewControllerDelegate;
- @interface HCNineNineScrollChildViewController : HCBaseViewController
- @property (nonatomic, weak) id<YHNineNineScrollChildViewControllerDelegate> delegate;
- @property (nonatomic, strong) HCNineCollectionView *collectionView;
- @property (nonatomic, strong) HCNineNineScrollChannelModel *model;
- @property (nonatomic, assign) BOOL canScroll;
- @end
- @protocol YHNineNineScrollChildViewControllerDelegate <NSObject>
- @optional
- - (void)yh_NineNineScrollChildViewControllerDidSelectItem:(HCChildGoodModel *)model;
- @end
|