如何判断与iPhone的连接方式是蓝牙还是WiFi?

发布于 2024-10-12 11:00:04 字数 419 浏览 3 评论 0原文

我正在使用 bonjour 网络服务在两部 iPhone 之间创建连接。

我使用

CFStreamCreatePairWithSocketToHost(kCFAllocatorDefault,
(CFStringRef)netService.hostName, netService.port, &readStream, &writeStream);

但我不知道如何判断生成的连接是否通过蓝牙进行连接。 有没有办法确定 IP 地址...应该可以做到。

我认为遵守 Apple 的人机界面指南很重要,因为如果通过 WiFi 连接,我有时需要更新状态栏中的网络活动指示器,但如果我在蓝牙中使用该指示器,它看起来可能会产生误导联系。 (该指示灯位于 wifi 连接旁边,而不是蓝牙连接旁边)。

谢谢

I am creating a connection using a bonjour netservice between two iphones.

I connect using

CFStreamCreatePairWithSocketToHost(kCFAllocatorDefault,
(CFStringRef)netService.hostName, netService.port, &readStream, &writeStream);

But I can not figure out how I can tell if the resulting connection is over bluetooth or not.
Is there a way to determine the IP address... that should do it.

I figure that is important to comply with Apple's Human Interface Guidelines because if the connection is over WiFi I need to update the Network Activity Indicator in the status bar at times, but it looks like it might be misleading if i use that indicator in a bluetooth connection. (The indicator is beside the wifi connection, not the bluetooth one).

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谢绝鈎搭 2024-10-19 11:00:04

我能够弄清楚。接收传入连接的服务器接收 IP 地址。蓝牙连接从 169.254.xx 开始,这应该足以满足我的需要。

I was able to figure it out. The server receiving the incoming connection receives the IP address. A bluetooth connection starts 169.254.x.x. That should be good enough for what I need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文