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