I need to check whether device has been connected properly to "My-Wifi" network or not. If it is connected then I will send some data to server otherwise not.

Right now I am just checking with the Internet connection, using Reachability class.

So how to check that?

link|improve this question

53% accept rate
Reachability also allowed to check for WiFi as well. – user523234 Feb 18 at 17:46
feedback

1 Answer

You can make use of CNCopySupportedInterfaces() call.

CFArrayRef interfaces = CNCopySupportedInterfaces();
CFIndex count = CFArrayGetCount(interfaces);

for (int i = 0; i < count; i++) {
    CFStringRef interface = CFArrayGetValueAtIndex(interfaces, i);
    CFDictionaryRef netinfo = CNCopyCurrentNetworkInfo(interface);
    if (netinfo && CFDictionaryContainsKey(netinfo, kCNNetworkInfoKeySSID)) {
        NSString *ssid = (__bridge NSString *)CFDictionaryGetValue(netinfo, kCNNetworkInfoKeySSID);
        // Compare with your needed ssid here
    }

    if (netinfo)
        CFRelease(netinfo);
}
CFRelease(interfaces);

In my experience, you will usually have one interface in the array which would either be a valid structure if you're connected or NULL if you're not. Still I let the for loop be there just in case.

The __bridge cast inside is only needed if you're using ARC.

link|improve this answer
Hey how to use __bridge, yes I am using ARC for my project. What do i do? – mrunal Feb 19 at 7:55
You use like in the example I provided, when you want to cast from functions that do not return ARC-supported object ownership. For ssid cast, Xcode actually inserted __bridge for me. – coverback Feb 19 at 8:05
What to do i am getting error, "Use of undeclared identifier '__bridge' " – mrunal Feb 19 at 8:18
Check answer here. You either don't need __bridge or need to turn ARC on. – coverback Feb 19 at 8:25
Yes, I do have ARC Enabled, but getting that error. Even if i remove that __bridge then error changes to "error: cast to 'NSString *' of a non-Objective-C to an Objective-C pointer is disallowed with Automatic Reference Counting" – mrunal Feb 19 at 8:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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