iPhone - 如何查找已连接 WiFi 接入点的 MAC 地址?
在不使用私有 API 的情况下,是否可以通过编程方式确定 iPhone 连接的接入点的 MAC 地址?
我知道使用核心 BSD 库应该可以做到这一点,但我们对此还很陌生,所以如果有人能为我们指出一些入门代码,那就太好了。
注意:我们正在尝试确定远程设备的 MAC 地址,而不是 iPhone 的 MAC 地址。
Without using the private APIs, is it possible to programatically determine the MAC address of the access point that the iPhone is connected to?
I understand that this should be doable using the core BSD libraries, but we are new to this, so it would be great if someone can point us to some starter code.
Note: we're trying to determine the MAC address of the remote device - not the MAC address of the iPhone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信 iPhone 上存在
NSHost
类。如果您为连接到的计算机创建一个NSHost
实例,那么向其发送-addresses
消息应该会为您提供其 IPV4 地址和 MAC 地址(如果我记得的话) 。I believe that the
NSHost
class exists on the iPhone. If you create anNSHost
instance for the machine you're connected to, then sending it an-addresses
message should give you its IPV4 address and its MAC address, if I recall.