iPhoneでXMPPフレームワークを使用してチャットアプリケーションを作成しています。メッセージの送受信のプロセスを知りたいのですが。誰かが私にこれに対する解決策を与えることができますか?
前もって感謝します。
iPhoneでXMPPフレームワークを使用してチャットアプリケーションを作成しています。メッセージの送受信のプロセスを知りたいのですが。誰かが私にこれに対する解決策を与えることができますか?
前もって感謝します。
XMPPFrameworkをダウンロードして解凍します。中にはいくつかのフォルダがあります。「Xcode」フォルダを開き、「iPhoneXMPP」フォルダを開き、「iPhoneXMPP.xcodeproj」をクリックして実行します。最初にログイン資格情報を要求します。ログインに成功すると、バディリストが表示されます。Gmailでは問題なく動作します。着信メッセージごとに呼び出されるコールバックメソッドが1つあります。
- (void)xmppStream:(XMPPStream *)sender didReceiveMessage:(XMPPMessage *)message
{
user = [xmppRosterStorage userForJID:[message from] xmppStream:sender managedObjectContext:[self managedObjectContext_roster]];
if ([message isChatMessageWithBody])
{
NSString *body = [[message elementForName:@"body"] stringValue];
NSString *from = [[message attributeForName:@"from"] stringValue];
NSMutableDictionary *m = [[NSMutableDictionary alloc] init];
[m setObject:body forKey:@"msg"];
[m setObject:from forKey:@"sender"];
if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateActive)
{
NSLog(@"Applications are in active state");
//send the above dictionary where ever you want
}
else
{
NSLog(@"Applications are in Inactive state");
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.alertAction = @"Ok";
localNotification.applicationIconBadgeNumber=count;
localNotification.alertBody =[NSString stringWithFormat:@"From:"%@\n\n%@",from,body];
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
//send the above dictionary where ever you want
}
}
}
メッセージを送信するには、必要に応じて独自のメソッドを作成する必要があります。
-(void)sendMessage
{
NSString *messageStr =messageField.text;
if([messageStr length] > 0)
{
NSLog(@"Message sending fron Gmail");
NSXMLElement *body = [NSXMLElement elementWithName:@"body"];
[body setStringValue:messageStr];
NSXMLElement *message = [NSXMLElement elementWithName:@"message"];
[message addAttributeWithName:@"type" stringValue:@"chat"];
[message addAttributeWithName:@"to" stringValue:@"destination address"];
[message addChild:body];
NSLog(@"message1%@",message);
[[self appDelegate].xmppSream sendElement:message];
}
}
以下のグループ/ルームでメッセージを送信するためのスニペットです
XMPPMessage *message = [XMPPMessage message];
[message addBody:@"123"];
[self.currentRoom sendMessage:message1];
Where self.currentRoom is XMPPRoom
からメッセージを送信する場合は、Room/Group
このコードを使用してメッセージを送信します。
[xmppRoom sendMessage:@"Hi All"];
を介してメッセージを送信する必要はありませんxmppStream
。この1行のコードは私にとって完璧に機能します。
クイックグーグル検索は、C /C++またはObjCのいずれかの多くのXMPPライブラリを明らかにします。個人的には試していませんが、おそらくhttp://code.google.com/p/xmppframework/が出発点として適しています。
これは、Swift3のXMPPFrameworkを介してメッセージを送信するためのソリューションです。
let user = XMPPJID(string: "user@jabjab.de")
let msg = XMPPMessage(type: "chat", to: user)
msg?.addBody("Message to send")
self.xmppStream.send(msg)