私は iPhone アプリ用の XMPP クライアントを実装しています。(他のユーザーとのチャット、他のユーザーの存在の表示など) ですべてのことを完了しました。
しかし、私が立ち往生しているのは、アプリから新しいユーザーを登録できないことです。次のスニペットを使用しています。
if ([appDelegate.xmppStream supportsInBandRegistration])
[appDelegate.xmppStream registerWithPassword:txt_Password.text error:nil];
ただし、この場合、supportsInBandRegistrationメソッドは常にNOを返し、registerWithPassword:メソッドは呼び出されません。
同じことに関していくつかの助けを提供してください。