PLVImageEmotionMessage
Objective-C
@interface PLVImageEmotionMessage : NSObject
@property (nonatomic, copy) NSString * _Nullable msgId;
@property (nonatomic, copy) NSString *imageId;
@property (nonatomic, copy) NSString *imageName;
@property (nonatomic, copy) NSString * _Nullable imageUrl;
@property (nonatomic, assign) CGSize imageSize;
@property (nonatomic, assign) NSTimeInterval time;
@property (nonatomic, assign) NSTimeInterval playbackTime;
///图片表情消息的发送状态
@property (nonatomic, assign) PLVImageEmotionMessageSendState sendState;
@end
Swift
class PLVImageEmotionMessage : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString * _Nullable msgId
Swift
var msgId: String? { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *imageId
Swift
var imageId: String { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *imageName
Swift
var imageName: String { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString * _Nullable imageUrl
Swift
var imageUrl: String? { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) CGSize imageSize
Swift
var imageSize: CGSize { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSTimeInterval time
Swift
var time: TimeInterval { get set }
-
Undocumented
Declaration
Objective-C
@property (nonatomic) NSTimeInterval playbackTime
Swift
var playbackTime: TimeInterval { get set }
-
图片表情消息的发送状态
Declaration
Objective-C
@property (nonatomic) PLVImageEmotionMessageSendState sendState;
Swift
var sendState: PLVImageEmotionMessageSendState { get set }