In the iPhone SDK I don\'t see the same SCDynamicStore used on Mac OS X to get the SSID name that your wireless network is currently connected to isn\'t availab
SCDynamicStore
Try this code,
#import CFArrayRef myArray = CNCopySupportedInterfaces(); CFDictionaryRef myDict = CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray, 0)); NSDictionary *ssidList = (__bridge NSDictionary*)myDict; NSString *SSID = [ssidList valueForKey:@"SSID"];