20 lines
250 B
C
20 lines
250 B
C
|
|
//
|
|||
|
|
// KBGuideUserCell.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// 我方发送气泡 cell(右侧紫色气泡)
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import "BaseCell.h"
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface KBGuideUserCell : BaseCell
|
|||
|
|
|
|||
|
|
- (void)configText:(NSString *)text;
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|
|||
|
|
|