PBChatMessageTextCell.h 398 B

1234567891011121314151617181920212223
  1. //
  2. // PBChatMessageTextCell.h
  3. // PBSDK_Example
  4. //
  5. // Created by hello on 2024/12/25.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class EMChatMessage;
  11. @interface PBChatMessageTextCell : UITableViewCell
  12. ///亮色
  13. @property (nonatomic,assign)BOOL isBright;
  14. - (void)configMessage:(EMChatMessage *)message;
  15. @end
  16. NS_ASSUME_NONNULL_END