// // RichFileCell.h // smartRhino // // Created by niuzhen on 2020/1/13. // Copyright © 2020 tederen. All rights reserved. // #import #import "MMBaseRichContentCell.h" #import "RichTextEditViewController.h" #import "RichModel.h" NS_ASSUME_NONNULL_BEGIN @interface RichFileCell : MMBaseRichContentCell @property (nonatomic, weak) id delegate; - (void)updateWithData:(id)data; - (void)mm_beginEditing; - (void)mm_endEditing; - (void)getPreFlag:(BOOL*)isPre postFlag:(BOOL*)isPost richFlag:(BOOL*)isRich model:(RichModel *)model; @end NS_ASSUME_NONNULL_END