通过互联网实现语音聊天 iphone sdk
谁能告诉我如何在 iphone sdk 中实现语音聊天。 游戏用于通过蓝牙进行语音聊天.. 我希望我的应用程序能够通过互联网提供语音聊天选项,
谢谢 亚西尔
Can any one tell me how can i implement voice chat in iphone sdk .
Game is used for voice chat over bluetooth ..
i want my app to have voice chat option over the internet
Thanks
Yasir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apple 的 GameKit 框架提供了实现游戏内聊天所需的一切。
完整文档位于:
http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/GameKit_Guide/AddingVoiceChattoaMatch/AddingVoiceChattoaMatch.html#//apple_ref/doc/uid/TP40008304-CH11 -SW11
假设您已经使用 GameKit 将应用程序连接到一个或多个其他玩家,您可以像这样开始语音聊天:
Apple's GameKit framework provides evertyhing you need to implement in-game chat.
The full documentation is here:
http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/GameKit_Guide/AddingVoiceChattoaMatch/AddingVoiceChattoaMatch.html#//apple_ref/doc/uid/TP40008304-CH11-SW11
Assuming you have allready connected the App to one or more other players using GameKit, you can start the voice chat like so:
一种最好的方法是使用 XMPP 框架。使用 XMPP 您可以发送文件和发短信给其他人。使用它您可以录制语音留言和语音留言。发送它过去。我做了很多研发工作。 D n 使用 XMPP 协议在 ios 上实现 jabber 服务器。
有关更多信息,请转到链接:使用 XMPP 协议实现 jabber。
http://mobile.tutsplus。 com/tutorials/iphone/building-a-jabber-client-for-ios-server-setup/
您还可以在 ios 中查看此链接进行简单聊天:
http://www.ibm.com/developerworks/library/x-ioschat/
One best way to do it using XMPP Framework. Using XMPP you can send files & text to other persons. Using it you can record voice message & send it across. I did lot of R & D n that to implement the jabber sever on ios with XMPP protocal.
for more info just move to link: to implement jabber with XMPP protocal.
http://mobile.tutsplus.com/tutorials/iphone/building-a-jabber-client-for-ios-server-setup/
You can also see this link for simple chating in ios :
http://www.ibm.com/developerworks/library/x-ioschat/