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.

Newbie IOS programmer looking for a way to get notified when the IPhone connects to a WIFI network.

i.e. Notification for the following transitions: 3G to WIFI WIFI to 3G WIFI to another WIFI

It should be able to tell which SSID I am connected to ...

This took about 20 minutes to figure out on Android, can't find a starting point for this function on IOS

thanks

share|improve this question

2 Answers

For getting notification of network changes, you could drop Apple's Reachability class into your project.

As for getting SSID's, check out the solutions in the System Configuration framework's CaptiveNetwork API (documentation linked for you).

share|improve this answer

Using the code u can get the SSID data of the WIFI you are currently connected to.

CFArrayRef myArray1 = CNCopySupportedInterfaces();
CFDictionaryRef myDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray1, 0));
NSLog(@"%@",myDict);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.