TUIReplyQuoteView.h 408 B

1234567891011121314151617181920212223
  1. //
  2. // TUIReplyQuoteView.h
  3. // TUIChat
  4. //
  5. // Created by harvy on 2021/11/25.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TUIReplyQuoteViewData;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIReplyQuoteView : UIView
  12. @property(nonatomic, strong) TUIReplyQuoteViewData *data;
  13. - (void)fillWithData:(TUIReplyQuoteViewData *)data;
  14. - (void)reset;
  15. @end
  16. NS_ASSUME_NONNULL_END