KWMProductDetailView.h 556 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
//
//  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;

@end

@interface KWMProductDetailView : UIView

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

-(void)setData:(BUYProduct *)product;

@end