123456789101112131415161718192021 |
- //
- // TDTableViewCell.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/9/23.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TDTableViewCell : UITableViewCell
- @property (copy, nonatomic) void(^ActionBlock)();
- - (void)setCellData:(id)data;
- - (void)setCellData:(id)data line:(BOOL)line;
- @end
- NS_ASSUME_NONNULL_END
|