123456789101112131415161718192021222324 |
- //
- // KBGoodDetailView.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class KBGoodDetailModel;
- @protocol YHGoodDetailViewDelegate;
- @interface KBGoodDetailView : UIView
- @property (nonatomic, weak) id<YHGoodDetailViewDelegate> delegate;
- @property (nonatomic, strong) KBGoodDetailModel *goodModel;
- @end
- @protocol YHGoodDetailViewDelegate <NSObject>
- @optional
- - (void)yh_GoodDetailViewTapCoupon;
- - (void)yh_GoodDetailViewTapShop;
- @end
|