ShopGoodsUIView.h 740 B

1234567891011121314151617181920212223242526
  1. //
  2. // ShopGoodsUIView.h
  3. // UIAuctionShop
  4. //
  5. // Created by 王珂 on 16/9/18.
  6. // Copyright © 2016年 qhy. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol ShopGoodsViewDelegate<NSObject>
  10. - (void)closeShopGoodsViewWithDic:(NSDictionary *)dic andIsOTOShop:(BOOL)isOTOShop;
  11. @end
  12. @interface ShopGoodsUIView : BGBaseView
  13. @property (nonatomic, weak) id<ShopGoodsViewDelegate> delegate;
  14. @property (nonatomic, assign) int type;//如果是主播type为0,观众为1,无商品为2;
  15. @property (nonatomic, copy) NSString *hostID;//主播用户ID
  16. @property (nonatomic, assign) BOOL isOTOShop;//是否是OTO的我的小店
  17. - (void)loadDataWithPage:(int)page;
  18. @end