MMRichTextModel.h 591 B

1234567891011121314151617181920212223
  1. //
  2. // MMRichTextModel.h
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/19.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import "MMBaseRichContentModel.h"
  11. #import <YYModel.h>
  12. @interface MMRichTextModel : MMBaseRichContentModel <YYModel>
  13. @property (nonatomic, assign) CGFloat textContentHeight;
  14. @property (nonatomic, copy) NSString* textContent;
  15. @property (nonatomic, assign) BOOL isEditing;
  16. @property (nonatomic, assign) NSRange selectedRange;
  17. @property (nonatomic, assign) BOOL shouldUpdateSelectedRange;
  18. @end