WFCCNotificationMessageContent.h 561 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // WFCCNotificationMessageContent.h
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/19.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMessageContent.h"
  9. @class WFCCMessage;
  10. /**
  11. 通知消息的协议
  12. */
  13. @protocol WFCCNotificationMessageContent <WFCCMessageContent>
  14. /**
  15. 获取通知的提示内容
  16. @return 提示内容
  17. */
  18. - (NSString *)formatNotification:(WFCCMessage *)message;
  19. @end
  20. /**
  21. 通知消息
  22. */
  23. @interface WFCCNotificationMessageContent : WFCCMessageContent < WFCCNotificationMessageContent>
  24. @end