新UI马甲包

HCGoodDetailView.h 515B

123456789101112131415161718192021222324
  1. //
  2. // HCGoodDetailView.h
  3. // hc
  4. //
  5. // Created by xiaoxi on 2018/1/25.
  6. // Copyright © 2018年 hc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class HCGoodDetailModel;
  10. @protocol YHGoodDetailViewDelegate;
  11. @interface HCGoodDetailView : UIView
  12. @property (nonatomic, weak) id<YHGoodDetailViewDelegate> delegate;
  13. @property (nonatomic, strong) HCGoodDetailModel *goodModel;
  14. @end
  15. @protocol YHGoodDetailViewDelegate <NSObject>
  16. @optional
  17. - (void)yh_GoodDetailViewTapCoupon;
  18. - (void)yh_GoodDetailViewTapShop;
  19. @end