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
(Add occlass so that we get a navbox and a library link. Reword slightly.)
m (Link is dead)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
'''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.
'''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. As it is a {{applink|SpringBoard}} plugin, it is not accessible elsewhere.


== Example Usage ==
== Example Usage ==
Line 5: Line 5:
[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks];
[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks];
</source>
</source>
You can obtain the header from [https://gist.github.com/SuperDev/5424960 here]


{{occlass|library=WiFiPicker.servicebundle|navbox=1}}
{{occlass|library=WiFiPicker.servicebundle|navbox=1}}

Latest revision as of 03:41, 25 August 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. As it is a SpringBoard plugin, it is not accessible elsewhere.

Example Usage

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