123456789101112131415161718192021222324252627 |
- //
- // DRNineNineScrollChildViewController.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/29.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "DRBaseViewController.h"
- #import "DRCollectionView.h"
- #import "DRNineCollectionView.h"
- @class DRNineNineScrollChannelModel,DRChildGoodModel;
- @protocol YHNineNineScrollChildViewControllerDelegate;
- @interface DRNineNineScrollChildViewController : DRBaseViewController
- @property (nonatomic, weak) id<YHNineNineScrollChildViewControllerDelegate> delegate;
- @property (nonatomic, strong) DRNineCollectionView *collectionView;
- @property (nonatomic, strong) DRNineNineScrollChannelModel *model;
- @property (nonatomic, assign) BOOL canScroll;
- @end
- @protocol YHNineNineScrollChildViewControllerDelegate <NSObject>
- @optional
- - (void)yh_NineNineScrollChildViewControllerDidSelectItem:(DRChildGoodModel *)model;
- @end
|