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