标签: xmpp xmppframework
我修改了this!来自Erlang的简单XMPP示例,通过添加委托函数(在委托扩展中的其他三个函数旁边):
func xmppStream(_ sender: XMPPStream, didReceive iq: XMPPIQ) -> Bool { print("Did receive IQ") return false }
因此,我可以在日志流中看到IQ消息,但它不会打印“Did received IQ”。 didReceiveMessage也会发生同样的事情。