KWMProductDetailView.h 644 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
//  KWMProductDetailView.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/1/11.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "Buy/Buy.h"

@protocol KWMProductDetailViewDelegate <NSObject>

- (void)kwm_onClickImage:(NSMutableArray *)imageArr currentIndex:(NSInteger)currentIndex;
- (void)kwm_onClickInformation;
- (void)kwm_onClickSizeBtn;
- (void)kwm_goToBrandVC;
lee committed
17
- (void)kwm_onClickSizeGuide;
houweibin committed
18 19 20 21 22 23
@end

@interface KWMProductDetailView : UIView

@property (weak, nonatomic) id<KWMProductDetailViewDelegate>delegate;

u  
lee committed
24 25
@property (weak, nonatomic) IBOutlet UIButton *sizeGuide;

houweibin committed
26 27 28
-(void)setData:(BUYProduct *)product;

@end