WFWiFiManager: Difference between revisions

From iPhone Development Wiki
No edit summary
(Throw the code example into a <source />)
Line 2: Line 2:
This class is used to perform WiFi related tasks such as scanning networks, retrieving all known networks etc. <br/>
This class is used to perform WiFi related tasks such as scanning networks, retrieving all known networks etc. <br/>


[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks]; // example usage
== Example Usage ==
<source lang="objc">
[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks];
</source>


You can obtain the header from [https://gist.github.com/SuperDev/5424960 here]
You can obtain the header from [https://gist.github.com/SuperDev/5424960 here]

Revision as of 07:21, 20 April 2013

WFWiFiManager is a class found in the WiFiPicker service bundle (/System/Library/SpringBoardPlugins/WiFiPicker.servicebundle).
This class is used to perform WiFi related tasks such as scanning networks, retrieving all known networks etc.

Example Usage

[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks];

You can obtain the header from here