12345678910111213141516171819202122 |
- //
- // DRTimeLineTableCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/27.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DRTimeLineModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface DRTimeLineTableCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic, strong) DRTimeLineModel *model;
- @property (nonatomic, copy) void (^shareClickBlock)(void);
- @property (nonatomic, copy) void (^tapBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|