21 lines
278 B
Objective-C
21 lines
278 B
Objective-C
//
|
||
// KBGuideKFCell.h
|
||
// keyBoard
|
||
//
|
||
// 客服回复气泡 cell(左侧头像 + 白色圆角气泡)
|
||
//
|
||
|
||
#import "BaseCell.h"
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface KBGuideKFCell : BaseCell
|
||
|
||
/// 设置文案
|
||
- (void)configText:(NSString *)text;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|
||
|