TUIReplyQuoteView.m 372 B

12345678910111213141516171819202122
  1. //
  2. // TUIReplyQuoteView.m
  3. // TUIChat
  4. //
  5. // Created by harvy on 2021/11/25.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import "TUIReplyQuoteView.h"
  9. #import <TIMCommon/NSString+TUIEmoji.h>
  10. #import "TUIReplyQuoteViewData.h"
  11. @implementation TUIReplyQuoteView
  12. - (void)fillWithData:(TUIReplyQuoteViewData *)data {
  13. _data = data;
  14. }
  15. - (void)reset {
  16. }
  17. @end