MMRichTitleCell.h 475 B

1234567891011121314151617181920212223
  1. //
  2. // MMRichTitleCell.h
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/21.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MMBaseRichContentCell.h"
  10. #import "RichTextEditViewController.h"
  11. @interface MMRichTitleCell : MMBaseRichContentCell
  12. @property (nonatomic, weak) id<RichTextEditDelegate> delegate;
  13. - (void)updateWithData:(id)data indexPath:(NSIndexPath*)indexPath;
  14. - (void)mm_beginEditing;
  15. - (void)mm_endEditing;
  16. @end