如何使用XMPP框架发送消息
我正在 iPhone 中使用 XMPP 框架创建一个聊天应用程序。我可以收到消息,但无法发送消息。任何人都可以给我解决这个问题吗?
I am creating a chat application using XMPP Framework in iphone. i could get received messages but i am not able to send a message. can any one give me solution for this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在你的 chatViewcontroller 中使用上面的代码..它对我来说工作得很好。
use the above code in you chatViewcontroller ..it is working fine for me.
试试这个:
Try this :
如果您正在使用 xmpp iPhone 示例应用程序...您可以使用类似以下内容,它应该可以帮助您入门:
只需将其放在
iPhoneXMPPAppDelegate.m 中的 xmppStream 委托方法中的警报下方:
这会自动将“测试回复”发送回最初向您发送消息 glhf 的 jid
!
if you are using the xmpp iPhone example application... you can use something like the following and it should get you started:
just place this right below the alert they have in there in the xmppStream delegate method in
iPhoneXMPPAppDelegate.m:
This will automatically send "test reply" back to the jid that initially sent you the message
glhf!
斯威夫特3答案:
Swift 3 answer: