如何从历史中获取时间戳?

时间:2016-08-05 08:54:03

标签: ios objective-c xmpp openfire

我正在使用Openfire& amp; XMPP。我成功实现了群聊。

现在,当我获取历史记录时,它会返回时间stmap,现在我如何获取该图章形式的响应。以下是我的回复:

img {    
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
}

我可以使用以下内容获取<message xmlns="jabber:client" type="groupchat" from="ios@conference.test/bhavin" to="bhavin@test/8o4ojvfnkm"> <body>sad</body> <delay xmlns="urn:xmpp:delay" stamp="2016-08-02T07:00:23.678Z" from="ios@conference.test"/> </message> 和消息from

body

但我如何获取邮票呢?

2 个答案:

答案 0 :(得分:0)

尝试以下代码希望这可能有帮助,

NSXMLElement *value = [message attributeForName:@"stamp"]; NSString *streamValueString = [value stringValue];

答案 1 :(得分:0)

我解决了这个问题。试试这个:

[[[message elementForName:@"delay" xmlns:@"urn:xmpp:delay"] attributeForName:@"stamp"] stringValue]