ShopGoodsView.h 486 B

123456789101112131415161718192021222324
  1. //
  2. // ShopGoodsView.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/10/31.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "GoodsModel.h"
  10. @protocol ShopGoodsDelegate<NSObject>
  11. - (void)toGoods;
  12. @end
  13. @interface ShopGoodsView : UIView
  14. @property (nonatomic, strong) GoodsModel *model;
  15. @property (nonatomic, assign) int type;//1为观众,0为主播
  16. @property (nonatomic, weak) id<ShopGoodsDelegate> delegate;
  17. @end