TUISystemMessageCell.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. /**
  4. *
  5. * This file declares the TUISystemMessageCell class, which is responsible for displaying system messages.
  6. * The system message unit is responsible for displaying special messages from the system. Such messages are usually white on a gray background and centered.
  7. */
  8. #import "TUIMessageCell.h"
  9. #import "TUISystemMessageCellData.h"
  10. /**
  11. * 【Module name】 TUISystemMessageCell
  12. * 【Function description】System message unit
  13. * - It is used to display the system messages. Common system messages include: recall-message, group-member-change-message, group-created and
  14. * group-diss-message, etc.
  15. * - System messages are typically used to display notifications from apps that are sent by the system, not from any user.
  16. */
  17. @interface TUISystemMessageCell : TUIMessageCell
  18. /**
  19. *
  20. * The label of display system message content, such as "You recalled a message.".
  21. */
  22. @property(readonly) UILabel *messageLabel;
  23. @property(readonly) TUISystemMessageCellData *systemData;
  24. - (void)fillWithData:(TUISystemMessageCellData *)data;
  25. @end