Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
WFWiFiManager: Difference between revisions - iPhone Development Wiki

WFWiFiManager: Difference between revisions

From iPhone Development Wiki
(Throw the code example into a <source />)
(Add occlass so that we get a navbox and a library link. Reword slightly.)
Line 1: Line 1:
'''WFWiFiManager''' is a class found in the WiFiPicker service bundle (/System/Library/SpringBoardPlugins/WiFiPicker.servicebundle). <br/>
'''WFWiFiManager''' is a class, found in the [[WiFiPicker.servicebundle|WiFiPicker]] service bundle. '''WFWiFiManager''' is used to perform WiFi related tasks such as scanning for and retrieving lists of networks.
This class is used to perform WiFi related tasks such as scanning networks, retrieving all known networks etc. <br/>


== Example Usage ==
== Example Usage ==
Line 8: Line 7:


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]
{{occlass|library=WiFiPicker.servicebundle|navbox=1}}

Revision as of 07:27, 20 April 2013

WFWiFiManager is a class, found in the WiFiPicker service bundle. WFWiFiManager is used to perform WiFi related tasks such as scanning for and retrieving lists of networks.

Example Usage

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

You can obtain the header from here