DSLSListProjectCollectionReusableView.h 769 Bytes
//
//  DSLSListProjectCollectionReusableView.h
//  iosZhaoLinNeighbouraide
//
//  Created by 兆林 on 2017/4/18.
//  Copyright © 2017年 BIKE. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "DSLSListProjectCategoryModel.h"

@interface DSLSListProjectCollectionReusableView : UICollectionReusableView

@property (nonatomic,strong) BKCycleScrollView * bannerView;

@property (nonatomic,strong) DSLSListProjectCategoryModel * categoryModel;

@property (nonatomic,assign) NSInteger selectIndex;

-(void)insertData:(DSLSListProjectCategoryModel *)categoryModel selectIndex:(NSInteger)selectIndex;

@property (nonatomic,copy) void (^tapBannerAction)(NSString * to , NSString * type);
@property (nonatomic,copy) void (^selectCategoryIndex)(NSInteger index);

@end