WFCCTextMessageContent.h 721 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // WFCCTextMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/8/16.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. /**
  10. 文本消息
  11. */
  12. @interface WFCCTextMessageContent : WFCCMessageContent
  13. /**
  14. 构造方法
  15. @param text 文本
  16. @return 文本消息
  17. */
  18. + (instancetype)contentWith:(NSString *)text;
  19. /**
  20. 文本内容
  21. */
  22. @property (nonatomic, strong)NSString *text;
  23. /**
  24. 提醒类型,1,提醒部分对象(mentinedTarget)。2,提醒全部。其他不提醒
  25. */
  26. @property (nonatomic, assign)int mentionedType;
  27. /**
  28. 提醒对象,mentionedType 1时有效
  29. */
  30. @property (nonatomic, strong)NSArray<NSString *> *mentionedTargets;
  31. @end