1234567891011121314151617181920212223 |
- //
- // MMRichTextModel.h
- // RichTextEditDemo
- //
- // Created by aron on 2017/7/19.
- // Copyright © 2017年 aron. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "MMBaseRichContentModel.h"
- #import <YYModel.h>
- @interface MMRichTextModel : MMBaseRichContentModel <YYModel>
- @property (nonatomic, assign) CGFloat textContentHeight;
- @property (nonatomic, copy) NSString* textContent;
- @property (nonatomic, assign) BOOL isEditing;
- @property (nonatomic, assign) NSRange selectedRange;
- @property (nonatomic, assign) BOOL shouldUpdateSelectedRange;
- @end
|