12345678910111213141516171819202122232425262728 |
- //
- // LDGoodDetailBottomView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class LDGoodDetailModel;
- @protocol YHGoodDetailBottomViewDelegate;
- @interface LDGoodDetailBottomView : UIView
- @property (nonatomic, weak) id<YHGoodDetailBottomViewDelegate> delegate;
- @property (nonatomic, strong) LDGoodDetailModel *goodModel;
- @property (nonatomic, strong) UIButton *commissionButton;
- @property (nonatomic, strong) UIButton *buyButton;
- @end
- @protocol YHGoodDetailBottomViewDelegate <NSObject>
- @optional
- - (void)yh_GoodDetailBottomViewClickCommissionButton;
- - (void)yh_GoodDetailBottomViewClickCollectButton;
- - (void)yh_GoodDetailBottomViewClickBuyButton;
- @end
|