TDTableViewCell.h 389 B

123456789101112131415161718192021
  1. //
  2. // TDTableViewCell.h
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/23.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TDTableViewCell : UITableViewCell
  11. @property (copy, nonatomic) void(^ActionBlock)();
  12. - (void)setCellData:(id)data;
  13. - (void)setCellData:(id)data line:(BOOL)line;
  14. @end
  15. NS_ASSUME_NONNULL_END