口袋优选

KBGoodListCidViewController.h 802B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // KBGoodListCidViewController.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/2/2.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBBaseViewController.h"
  9. @protocol YHGoodListBottomViewDelegate;
  10. @interface YHGoodListBottomView : UICollectionReusableView
  11. @property (nonatomic, weak) id<YHGoodListBottomViewDelegate> delegate;
  12. @property (nonatomic, strong) NSMutableArray *goodsArr;
  13. @end
  14. @protocol YHGoodListBottomViewDelegate <NSObject>
  15. @optional
  16. - (void)yh_GoodListBottomViewDidSelectItemAt:(NSIndexPath *)indexPath;
  17. @end
  18. @interface KBGoodListCidViewController : KBBaseViewController
  19. @property (nonatomic, copy) NSString *goods_id;
  20. @property (nonatomic, copy) NSString *cid;
  21. /*
  22. * topRequest 1 similar 2 gid
  23. */
  24. @property (nonatomic, assign) NSInteger topRequest;
  25. @end