口袋优选

KBGoodDetailBottomView.h 858B

1234567891011121314151617181920212223242526272829
  1. //
  2. // KBGoodDetailBottomView.h
  3. // YouHuiProject
  4. //
  5. // Created by xiaoxi on 2018/1/25.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class KBGoodDetailModel;
  10. @protocol YHGoodDetailBottomViewDelegate;
  11. @interface KBGoodDetailBottomView : UIView
  12. @property (nonatomic, weak) id<YHGoodDetailBottomViewDelegate> delegate;
  13. @property (nonatomic, strong) KBGoodDetailModel *goodModel;
  14. @property (nonatomic, strong) UIButton *shopButton;
  15. @property (nonatomic, strong) UIButton *collectButton;
  16. @property (nonatomic, strong) UIButton *commissionButton;
  17. @property (nonatomic, strong) UIButton *buyButton;
  18. @end
  19. @protocol YHGoodDetailBottomViewDelegate <NSObject>
  20. @optional
  21. - (void)yh_GoodDetailBottomViewClickCommissionButton;
  22. - (void)yh_GoodDetailBottomViewClickCollectButton;
  23. - (void)yh_GoodDetailBottomViewClickBuyButton;
  24. @end