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