Is it possible to run a method that will return the name of the wireless network that the user is connected to? Inside of my app I want to be able to return the name of the wireless network that the user is connected to.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
This worked perfect for me:
|
|||
|
|
|
From Developer.apple , you can use CNCopyCurrentNetworkInfo It Returns the current network info for a given network interface.
It contains a dictionary that containing the interface’s current network info. Ownership follows the Create Rule. Note:Available in iOS 4.1 and later. EXAMPLE: This example will work fine in real device, It may crash in simulator. Add SystemConfiguration.framework Import
Then write the below code.
or Using Bonjour, the application both advertises itself on the local network and displays a list of other instances of this application on the network See the sample Witap application |
|||||||
|