WFCUFileRecordTableViewCell.h 441 B

12345678910111213141516171819
  1. //
  2. // FileRecordTableViewCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by dali on 2020/10/29.
  6. // Copyright © 2020 Wildfirechat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class WFCCFileRecord;
  11. @interface WFCUFileRecordTableViewCell : UITableViewCell
  12. @property(nonatomic, strong)WFCCFileRecord *fileRecord;
  13. + (CGFloat)sizeOfRecord:(WFCCFileRecord *)record withCellWidth:(CGFloat)width;
  14. @end
  15. NS_ASSUME_NONNULL_END