How to get xmpp user after login into xmpp server successfully (iPhone SDK)?
How to get XMPP user info after login into xmpp server开发者_如何学C successfully (iPhone SDK)?
After login successfully the following method called.
- (void)xmppStreamDidAuthenticate:(XMPPStream *)sender
Assuming you're using XMPPFrameowrk, then your XMPPStream
instance has a myJID
property that is overwritten in handleBinding with the full JID that the server assigned you.
精彩评论