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

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

@protocol KWMClothingSetsDelegate <NSObject>

u  
lee committed
14 15
- (void)kwm_onClickFocusImage;

houweibin committed
16 17
- (void)kwm_onClickProduct:(BUYProduct *)product;

houweibin committed
18 19
- (void)kwm_gotoClothingSetsPage;

houweibin committed
20
@end
houweibin committed
21 22 23 24 25

@interface KWMClothingSetsHeader : UIView<UICollectionViewDataSource,UICollectionViewDelegate>

+ (NSString *)kwmTag;

houweibin committed
26 27 28 29 30 31
@property(nonatomic,weak) id<KWMClothingSetsDelegate> delegate;

@property(nonatomic) NSArray *productArray;

@property(nonatomic) NSString *headerImage;

houweibin committed
32
@end