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.

I have a commercial app that has a completely legitimate reason to see the SSID of the network it is connected to: If it is connected to a Adhoc network for a 3rd party hardware device it needs to be functioning in a different manner than if it is connected to the internet.

Everything I've seen about getting the SSID tells me I have to use Apple80211, which I understand is a private library. I also read that if I use a private library Apple will not approve the app.

Am I stuck between an Apple and a hard place, or is there something I'm missing here?

share|improve this question

4 Answers

up vote 62 down vote accepted

On iOS 4.1+, you can do this:

#import <SystemConfiguration/CaptiveNetwork.h>

- (id)fetchSSIDInfo
{
    NSArray *ifs = (id)CNCopySupportedInterfaces();
    NSLog(@"%s: Supported interfaces: %@", __func__, ifs);
    id info = nil;
    for (NSString *ifnam in ifs) {
        info = (id)CNCopyCurrentNetworkInfo((CFStringRef)ifnam);
        NSLog(@"%s: %@ => %@", __func__, ifnam, info);
        if (info && [info count]) {
            break;
        }
        [info release];
    }
    [ifs release];
    return [info autorelease];
}

Example output:

2011-03-04 15:32:00.669 ShowSSID[4857:307] -[ShowSSIDAppDelegate fetchSSIDInfo]: Supported interfaces: (
    en0
)
2011-03-04 15:32:00.693 ShowSSID[4857:307] -[ShowSSIDAppDelegate fetchSSIDInfo]: en0 => {
    BSSID = "ca:fe:ca:fe:ca:fe";
    SSID = XXXX;
    SSIDDATA = <01234567 01234567 01234567>;
}

Note that no ifs are supported on the simulator. Test on your device.

Prior to 4.1, you might have some luck spelunking through the System Configuration dictionary. For example, using scutil on my Mac:

$ scutil
> show State:/Network/Interface/en1/AirPort
<dictionary> {
  Power Status : 1
  SecureIBSSEnabled : FALSE
  BSSID : <data> 0xcafecafecafe
  SSID_STR : XXXX
  SSID : <data> 0x012345670123456701234567
  Busy : FALSE
  CHANNEL : <dictionary> {
    CHANNEL : 1
    CHANNEL_FLAGS : 10
  }
}
> exit
share|improve this answer
1  
Perfect! Thanks! – Steve Reed Sr Mar 5 '11 at 1:18
2  
Thanks! If you're using ARC, here's what it should look like: - (id)fetchSSIDInfo { NSArray *ifs = (bridge_transfer id)CNCopySupportedInterfaces(); NSLog(@"%s: Supported interfaces: %@", _func, ifs); id info = nil; for (NSString *ifnam in ifs) { info = (bridge_transfer id)CNCopyCurrentNetworkInfo((_bridge CFStringRef)ifnam); NSLog(@"%s: %@ => %@", __func, ifnam, info); if (info && [info count]) { break; } } return info; } – elsurudo May 5 '12 at 19:31
__bridge_transer* – mkral May 24 '12 at 19:01
@Jeremy W. Sherman Hello sir, i need your help. Please click on chat.stackoverflow.com/rooms/12473/liveaudiorecord-discussion – Simha.hb Jun 13 '12 at 4:45
+1 Works great! Do not forget to add/link the [+]framework to your project. If you see weird compiling errors when using this method that is probably your problem. To e.g. get the SSID from the returned dictionary use // Getting a dictionary object containing the information of the network the iPhone is connected to NSDictionary *networkDict = [self fetchSSIDInfo]; // Select the SSID from the network information NSString *iPhoneNetworkSSID = [networkDict objectForKey:@"SSID"]; – Filip Dec 17 '12 at 13:13

Here's the cleaned up ARC version, based on @elsurudo's code:

- (id)fetchSSIDInfo {
     NSArray *ifs = (__bridge_transfer id)CNCopySupportedInterfaces();
     NSLog(@"Supported interfaces: %@", ifs);
     id info = nil;
     for (NSString *ifnam in ifs) {
         info = (__bridge_transfer id)CNCopyCurrentNetworkInfo((__bridge CFStringRef)ifnam);
         NSLog(@"%@ => %@", ifnam, info);
         if (info && [info count]) { break; }
     }
     return info;
}
share|improve this answer

This works for me on the device (not simulator). Make sure you add the systemconfiguration framework.

#import <SystemConfiguration/CaptiveNetwork.h>

+ (NSString *)currentWifiSSID {
    // Does not work on the simulator.
    NSString *ssid = nil;
    NSArray *ifs = (__bridge_transfer id)CNCopySupportedInterfaces();
    for (NSString *ifnam in ifs) {
        NSDictionary *info = (__bridge_transfer id)CNCopyCurrentNetworkInfo((__bridge CFStringRef)ifnam);
        if (info[@"SSID"]) {
            ssid = info[@"SSID"];
        }
    }
    return ssid;
}
share|improve this answer

protected by Community Aug 12 '11 at 15:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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