123456789101112131415161718192021 |
- //
- // HSQTimeLineRecomCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2019/1/7.
- // Copyright © 2019年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HSQTimeLineModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HSQTimeLineRecomCell : UITableViewCell
- @property (nonatomic, strong) HSQTimeLineModel *model;
- @property (nonatomic, copy) void (^shareClickBlock)(void);
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|