// // KBTodayModelCollectionCell.h // YouHuiProject // // Created by 小花 on 2018/7/11. // Copyright © 2018年 kuxuan. All rights reserved. // #import #import "KBTodayModelView.h" #import "KBTodayMudleModel.h" @class KBTodayModelCollectionCell; @protocol LDTodayModelCollectionCellDelegate - (void)modelCollectionCellMoreButtonClick:(KBTodayModelCollectionCell *)cell; @end @interface KBTodayModelCollectionCell : UICollectionViewCell @property (nonatomic, strong) UILabel *desLabel; @property (nonatomic, strong) KBTodayModelView *modelView; @property (nonatomic, weak) iddelegate; @property (nonatomic, strong) NSIndexPath *indexPath; @property (nonatomic, strong) KBTodayMudleModel *model; @end