// // KBGoodDetailBottomView.h // YouHuiProject // // Created by xiaoxi on 2018/1/25. // Copyright © 2018年 kuxuan. All rights reserved. // #import @class KBGoodDetailModel; @protocol YHGoodDetailBottomViewDelegate; @interface KBGoodDetailBottomView : UIView @property (nonatomic, weak) id 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 @optional - (void)yh_GoodDetailBottomViewClickCommissionButton; - (void)yh_GoodDetailBottomViewClickCollectButton; - (void)yh_GoodDetailBottomViewClickBuyButton; @end