PLVQuoteMessage
Objective-C
@interface PLVQuoteMessage : NSObject
@property (nonatomic, copy) NSString * _Nullable msgId;
@property (nonatomic, copy) NSString *content;
@property (nonatomic, copy) NSString *quoteMsgId;
@property (nonatomic, copy) NSString *quoteUserId;
@property (nonatomic, copy) NSString *quoteUserName;
@property (nonatomic, copy) NSString * _Nullable quoteContent;
@property (nonatomic, copy) NSString * _Nullable quoteImageUrl;
@property (nonatomic, assign) CGSize quoteImageSize;
@property (nonatomic, assign)NSTimeInterval time;
@property (nonatomic, assign) NSTimeInterval playbackTime;
/// 消息是否超过约定长度
@property (nonatomic, assign) BOOL overLen;
/// 是否触发严禁词,且content中的严禁词已被**替换,默认为NO
@property (nonatomic, assign) BOOL prohibitWordReplaced;
@end
Swift
class PLVQuoteMessage : 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, copy) NSString *quoteMsgIdSwift
var quoteMsgId: String { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *quoteUserIdSwift
var quoteUserId: String { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *quoteUserNameSwift
var quoteUserName: String { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString * _Nullable quoteContentSwift
var quoteContent: String? { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString * _Nullable quoteImageUrlSwift
var quoteImageUrl: String? { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic) CGSize quoteImageSizeSwift
var quoteImageSize: CGSize { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic)NSTimeInterval timeSwift
var time: TimeInterval { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic) NSTimeInterval playbackTimeSwift
var playbackTime: TimeInterval { get set } -
消息是否超过约定长度
Declaration
Objective-C
@property (nonatomic) BOOL overLen;Swift
var overLen: Bool { get set } -
是否触发严禁词,且content中的严禁词已被**替换,默认为NO
Declaration
Objective-C
@property (nonatomic) BOOL prohibitWordReplaced;Swift
var prohibitWordReplaced: Bool { get set }
View on GitHub
PLVQuoteMessage Class Reference