123456789101112131415161718192021222324252627 |
- //
- // RichFileCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/1/13.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MMBaseRichContentCell.h"
- #import "RichTextEditViewController.h"
- #import "RichModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RichFileCell : MMBaseRichContentCell
- @property (nonatomic, weak) id<RichTextEditDelegate> 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
|