21 lines
437 B
Objective-C
21 lines
437 B
Objective-C
//
|
|
// KBChatMessage.m
|
|
// CustomKeyboard
|
|
//
|
|
|
|
#import "KBChatMessage.h"
|
|
|
|
@implementation KBChatMessage
|
|
|
|
+ (instancetype)messageWithText:(NSString *)text
|
|
outgoing:(BOOL)outgoing
|
|
audioFilePath:(NSString *)audioFilePath {
|
|
KBChatMessage *msg = [[KBChatMessage alloc] init];
|
|
msg.text = text ?: @"";
|
|
msg.outgoing = outgoing;
|
|
msg.audioFilePath = audioFilePath;
|
|
return msg;
|
|
}
|
|
|
|
@end
|