-3
是否有可能獲得當前wifi鏈接速度在Swift中?
例如:72Mbps
如何在Swift中獲得當前WiFi鏈接速度?
在Andriod的方法已知的方法:WifiManager.getConnectionInfo().getLinkSpeed()
是否有可能獲得當前wifi鏈接速度在Swift中?
例如:72Mbps
如何在Swift中獲得當前WiFi鏈接速度?
在Andriod的方法已知的方法:WifiManager.getConnectionInfo().getLinkSpeed()
你可以調用它。 https://developer.android.com/reference/android/net/wifi/WifiInfo.html#getLinkSpeed()
wifiInfo.getLinkSpeed();
謝謝@WJ JEONG!但我正在尋找Swift中類似的方法。 –