线上所有马甲包模板,与《猎豆》同UI。域名zhuadd

HSQGoodDetailBottomView.h 756B

12345678910111213141516171819202122232425262728
  1. //
  2. // HSQGoodDetailBottomView.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 HSQGoodDetailModel;
  10. @protocol YHGoodDetailBottomViewDelegate;
  11. @interface HSQGoodDetailBottomView : UIView
  12. @property (nonatomic, weak) id<YHGoodDetailBottomViewDelegate> delegate;
  13. @property (nonatomic, strong) HSQGoodDetailModel *goodModel;
  14. @property (nonatomic, strong) UIButton *commissionButton;
  15. @property (nonatomic, strong) UIButton *buyButton;
  16. @end
  17. @protocol YHGoodDetailBottomViewDelegate <NSObject>
  18. @optional
  19. - (void)yh_GoodDetailBottomViewClickCommissionButton;
  20. - (void)yh_GoodDetailBottomViewClickCollectButton;
  21. - (void)yh_GoodDetailBottomViewClickBuyButton;
  22. @end