MMRichTextModel.m 593 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MMRichTextModel.m
  3. // RichTextEditDemo
  4. //
  5. // Created by aron on 2017/7/19.
  6. // Copyright © 2017年 aron. All rights reserved.
  7. //
  8. #import "MMRichTextModel.h"
  9. @implementation MMRichTextModel
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. _textContentHeight = 40;
  15. _textContent = @"";
  16. self.richContentType = MMRichContentTypeText;
  17. }
  18. return self;
  19. }
  20. - (void)setTextContent:(NSString *)textContent {
  21. if ([textContent isEqualToString:@"\n"]) {
  22. _textContent = @"";
  23. } else {
  24. _textContent = textContent;
  25. }
  26. }
  27. @end