KWMRecommendHeader.h 547 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9
//
//  KWMRecommendHeader.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/10.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
houweibin committed
10
#import <Buy/Buy.h>
houweibin committed
11

houweibin committed
12 13 14 15
@protocol KWMRecommendDelegate <NSObject>

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

houweibin committed
16 17
- (void)kwm_gotoRecommendPage;

houweibin committed
18
@end
houweibin committed
19 20 21 22
@interface KWMRecommendHeader : UIView<UICollectionViewDataSource,UICollectionViewDelegate>

+ (NSString *)kwmTag;

houweibin committed
23 24 25 26
@property(nonatomic,weak) id<KWMRecommendDelegate> delegate;

@property(nonatomic) NSArray *productArray;

houweibin committed
27
@end