如何使用 iPhone SDK 通过蓝牙交换数据?
如何使用 iPhone SDK 通过蓝牙以编程方式交换数据?
How do I exchange data programmatically via Bluetooth using the iPhone SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 iPhone SDK 通过蓝牙以编程方式交换数据?
How do I exchange data programmatically via Bluetooth using the iPhone SDK?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
要使用 iPhone SDK 交换数据,您应该使用 GameKit 框架。
您可以查看此示例代码,或来自应用商店中的实时应用程序的示例代码,或 Randolph 提到的代码,此处。
基本过程是设置一个控制器和一个委托来为您处理蓝牙连接。您的委托需要处理诸如“连接到对等点”或“接收到的数据”之类的事情。
另外,您应该注意,模拟器不能使用蓝牙,因此您将需要两个或更多真实的 iOS 设备来进行测试。
To exchange data using the iPhone SDK, you should to use the GameKit Framework.
You can look at this sample code, or this sample code from a live app in the app store, or the code mentioned by Randolph, here.
The basic process is setting up a controller and a delegate to handle the bluetooth connection for you. Your delegate needs to handle things like "Connected to peer" or "Received data".
Also, you should note that the simulator does not work with bluetooth and so you will need two real iOS devices or more to test with.