1234567891011121314151617181920212223 |
- //
- // PBChatMessageTextCell.h
- // PBSDK_Example
- //
- // Created by hello on 2024/12/25.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class EMChatMessage;
- @interface PBChatMessageTextCell : UITableViewCell
- ///亮色
- @property (nonatomic,assign)BOOL isBright;
- - (void)configMessage:(EMChatMessage *)message;
- @end
- NS_ASSUME_NONNULL_END
|