20 lines
291 B
Objective-C
20 lines
291 B
Objective-C
//
|
||
// KBChatUserCell.h
|
||
// CustomKeyboard
|
||
//
|
||
// 用户消息 Cell(右侧显示)
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
@class KBChatMessage;
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface KBChatUserCell : UITableViewCell
|
||
|
||
- (void)configureWithMessage:(KBChatMessage *)message;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|