我正在做一些不需要在App store上发布的东西,所以我可以使用私有API来满足我的需求,我试图使用MobileWiFi. framework to read the RSSI value for the wireless network the phone is currently connected to. I've included the
https://github.com/Cykey/ios-reversed-headers/tree/c613e45f3ee5ad9f85ec7d43906cf69ee812ec6a/MobileWiFi `头文件,并使用桥接头文件将它们包含在我的Swift项目中,并编写了如下代码。请原谅,我是一个新手。
import SystemConfiguration.CaptiveNetwork
typealias _WiFiManagerClientCreate = @convention(c) (CFAllocator, CInt) -> UnsafeRawPointer
typealias _WiFiManagerClientCopyDevices = @convention(c) (UnsafeRawPointer) -> CFArray
typealias _WiFiDeviceClientCopyProperty = @convention(c) (UnsafeRawPointer, CFString) -> CFPropertyList
if let libHandle = dlopen (Paths.ipConfiguration, RTLD_LAZY) {
result = libHandle.debugDescription
let _createManagerPtr = dlsym(libHandle, "WiFiManagerClientCreate")
let _clientCopyDevicesPtr = dlsym(libHandle, "WiFiManagerClientCopyDevices")
let _clientCopyPropertyPtr = dlsym(libHandle, "WiFiDeviceClientCopyProperty")
if (_createManagerPtr != nil) && (_clientCopyDevicesPtr != nil) && (_clientCopyPropertyPtr != nil) {
let _createManager = unsafeBitCast(_createManagerPtr, to: _WiFiManagerClientCreate.self)
let _clientCopyDevices = unsafeBitCast(_clientCopyDevicesPtr, to: _WiFiManagerClientCopyDevices.self)
let _clientCopyProperty = unsafeBitCast(_clientCopyPropertyPtr, to: _WiFiDeviceClientCopyProperty.self)
let manager = _createManager(kCFAllocatorDefault, 0)
let devices = _clientCopyDevices(manager)
let client = CFArrayGetValueAtIndex(devices, 0)
let data = _clientCopyProperty(client!, "RSSI" as CFString)
let rssi = CFDictionaryGetValue(data as! CFDictionary, "RSSI_CTL_AGR")
NSLog("RSSI: \(rssi)")
}
dlclose(libHandle)
}
这将产生错误fatal error: unexpectedly found nil while unwrapping an Optional value which stems from trying to call _createManager
5条答案
按热度按时间xytpbqjk1#
我最终使用了这个解决方案:
工作没有任何权利或越狱
nuypyhwy2#
由于iPhone X中的状态栏与其他iPhone不同,因此获取WiFi信息的方式也不同。
以下是如何通过“未记录的属性”获得它的解决方案,这意味着Apple可能会在未来更改这些属性而不让我们知道。如果Apple更改了未记录的属性,应用程序将崩溃,但我们没有相应地调整代码。所以我们必须在Swift中处理NSException。
创建一个头文件,并将其添加到Bridging-Header.h中。您可以找到文件here:https://gist.github.com/zhihuitang/6d3de0963d96a552d47721a598ca79c8
在iPhoneX中,我们可以获取WiFi的numberOfActiveBars,范围为0到3。在iPhoneX以外的其他iPhone中,我们可以获得WiFi RSSI。
在iPhoneX上,请使用
getWiFiNumberOfActiveBars()
:在iPhoneX以外的iPhone设备上,请使用
getWiFiRSSI()
:到目前为止,我还没有找到在iPhoneX上获取WiFiRSSI的方法。如果你们知道怎么做,也请告诉我。谢谢.
下面是Github中的demo project
mnowg1ta3#
我认为这是不可能的最新版本的iOS。只有iOS4才有可能。
k7fdbhmy4#
Apple不喜欢这种方式,并威胁app review rejection。
toiithl65#
rssi and other stats
iOS 17开放了Wi-Fi API,可以在无线测试中使用。
为了使用它:
升级到ios 17下载快捷方式https://www.icloud.com/shortcuts/f4aa1682c2b241bd838bf60dba0a3bae