WFWiFiManager: Difference between revisions

From iPhone Development Wiki
No edit summary
No edit summary
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 service bundle (/System/Library/SpringBoardPlugins/WiFiPicker.servicebundle). <br/>
This class is used to perform WiFi related tasks such as scanning networks, retrieving the current network name 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
  [[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks]; // example usage


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 06: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.

[[objc_getClass("WFWiFiManager") sharedInstance] knownNetworks]; // example usage

You can obtain the header from here