cn.tee3.avd_SDK-Objectc  2.1.0
AVDMessage.h
浏览该文件的文档.
1 //
2 // AVDMessage.h
3 // avd_sdk
4 //
5 // Created by skin on 15-9-19.
6 // Copyright (c) 2015年 t3ee. All rights reserved.
7 //
8 
9 #import "AVDCommon.h"
10 
16 @interface AVDMessage : NSObject
17 
18 @property(nonatomic, strong, readonly) NSDate* timestamp;
19 @property(nonatomic, strong, readonly) AVDUserId fromId;
20 @property(nonatomic, strong, readonly) NSString* fromName;
21 @property(nonatomic, strong, readonly) NSString* message;
23 - (instancetype) initWithFromId:(NSString*) fromId
24  fromName:(NSString*) fromName
25  message:(NSString*) message;
26 
27 @end
NSString * message
消息内容
Definition: AVDMessage.h:21
聊天消息结构.
Definition: AVDMessage.h:16
NSDate * timestamp
消息时间戳,对应用层是本地时间,传输中用GMT时间
Definition: AVDMessage.h:18
NSString * AVDUserId
Definition: AVDCommon.h:15
AVDUserId fromId
消息发送者Id
Definition: AVDMessage.h:19
NSString * fromName
消息发送者名
Definition: AVDMessage.h:20