当我使用 XMPPFramwork 加入 MUC 房间时,我通过委托方法收到新消息:
func xmppRoom(sender: XMPPRoom!, didReceiveMessage message: XMPPMessage!, fromOccupant occupantJID: XMPPJID!) {
}
如何获取发送消息的用户的昵称?
我试过message.from().user
了,但这并没有打印出昵称。
我现在使用message.fromStr())!.lastPathComponent!
,但这感觉非常错误。
有没有更好的方法来做到这一点?