1234567891011121314151617181920212223242526272829 |
- //
- // KBGoodDetailBottomView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class KBGoodDetailModel;
- @protocol YHGoodDetailBottomViewDelegate;
- @interface KBGoodDetailBottomView : UIView
- @property (nonatomic, weak) id<YHGoodDetailBottomViewDelegate> delegate;
- @property (nonatomic, strong) KBGoodDetailModel *goodModel;
- @property (nonatomic, strong) UIButton *shopButton;
- @property (nonatomic, strong) UIButton *collectButton;
- @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
|