1234567891011121314151617181920212223 |
- //
- // MMRichTitleCell.h
- // RichTextEditDemo
- //
- // Created by aron on 2017/7/21.
- // Copyright © 2017年 aron. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "MMBaseRichContentCell.h"
- #import "RichTextEditViewController.h"
- @interface MMRichTitleCell : MMBaseRichContentCell
- @property (nonatomic, weak) id<RichTextEditDelegate> delegate;
- - (void)updateWithData:(id)data indexPath:(NSIndexPath*)indexPath;
- - (void)mm_beginEditing;
- - (void)mm_endEditing;
- @end
|