CNDSCategorySquareCollectionCell.h
627 Bytes
//
// CNCategorySquareCollectionCell.h
// CNLiveNetAdd
//
// Created by cnliveJunBo on 2018/5/25.
// Copyright © 2018年 cnlive. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CNDSCategorySquareModel.h"
/**
cell 点击回调Block
@param darenId 1:categoryId 2:darenId
@param tag 1:跳转广场 2:跳转达人首页
*/
typedef void(^ClickSquareCellBlock)(NSString *darenId,NSInteger tag);
@interface CNDSCategorySquareCollectionCell : UICollectionViewCell
@property (nonatomic, copy) ClickSquareCellBlock clickSquareCellBlock;
@property (nonatomic, strong) CNDSCategorySquareModel *squareModel;
@end