I'm building a network testing app, and for that I need to verify some information about the network.
Specifically, right now, I'm looking for the ability to verify that the Wi-Fi network that my iPhone is connected to, is running the right standard - specifically I'm looking for 802.11ac.
On my mac I can alt-click the Wi-Fi symbol to get "PHY-function: 802.11ac". I would presumably get this information through the activePHYMode
function. https://developer.apple.com/documentation/corewlan/cwinterface/1426471-activephymode
However it does not appear that this function is available on iOS. Could it be made available?
-- Frederik