PLVSpeakMessage
Objective-C
@interface PLVSpeakMessage : NSObject
@property (nonatomic, copy) NSString * _Nullable msgId;
@property (nonatomic, copy) NSString *content;
@property (nonatomic, assign)NSTimeInterval time;
/// 如果值为"extend"表示为:提醒消息
@property (nonatomic, copy) NSString * _Nullable source;
@end
Swift
class PLVSpeakMessage : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString * _Nullable msgIdSwift
var msgId: String? { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *contentSwift
var content: String { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic)NSTimeInterval timeSwift
var time: TimeInterval { get set } -
如果值为"extend"表示为:提醒消息
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nullable source;Swift
var source: String? { get set }
View on GitHub
PLVSpeakMessage Class Reference