KWMRecommendView.h 729 Bytes
//
//  KWMRecommendHeader.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/10.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <Buy/Buy.h>
@class KWMRecommendView;

@protocol KWMRecommendDelegate <NSObject>

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

- (void)kwm_gotoRecommendPage:(KWMRecommendView *)recommendView;

@end
@interface KWMRecommendView : UIView<UICollectionViewDataSource,UICollectionViewDelegate>

+ (NSString *)kwmTag;

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

@property(nonatomic) NSArray *productArray;

@property(nonatomic) NSString *title;

//已购买商品,用于去重
@property(nonatomic) NSArray *boughtProductIdArray;

@end