RichFileCell.h 604 B

123456789101112131415161718192021222324252627
  1. //
  2. // RichFileCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/1/13.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MMBaseRichContentCell.h"
  10. #import "RichTextEditViewController.h"
  11. #import "RichModel.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface RichFileCell : MMBaseRichContentCell
  14. @property (nonatomic, weak) id<RichTextEditDelegate> delegate;
  15. - (void)updateWithData:(id)data;
  16. - (void)mm_beginEditing;
  17. - (void)mm_endEditing;
  18. - (void)getPreFlag:(BOOL*)isPre postFlag:(BOOL*)isPost richFlag:(BOOL*)isRich model:(RichModel *)model;
  19. @end
  20. NS_ASSUME_NONNULL_END