English 中文(简体)
使用 Robbiehanson XMPP 框架在 iOS 中使用 MIOS 的 MUC
原标题:MUC in iOS using robbiehanson XMPPframework

使用robbiehanson XMPP框架在iOS中实施 MUC的一步一步程序是什么?

我试着安排房间 然后激活溪流 进入房间

但我得到的答复如下:

 <iq xmlns="jabber:client" from="[email protected]" to="[email protected]/34633017701337944885586135" type="error" id="4DD4A6E2-E24F-4D38-AD87-15070B6AD90E"><query xmlns="http://jabber.org/protocol/muc#owner"><x xmlns="jabber:x:data" type="submit"/></query><error code="503" type="cancel"><service-unavailable xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"/></error></iq>

还收到一份iq: xmppStream:disreveIQ: - 4DD4A6E2-E24F-4D38-AD87-15070B6AD90E

最佳回答

最后我找到了它。 它可能会帮助某人。 当创建或进入房间时, 格式应该为

问题回答

暂无回答




相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...