NSString*wifiName =@"Not Found";
CFArrayRefmyArray =CNCopySupportedInterfaces();
if(myArray !=nil) {
CFDictionaryRefmyDict =CNCopyCurrentNetworkInfo(CFArrayGetValueAtIndex(myArray,0
));
if(myDict !=nil) {
NSDictionary*dict = (NSDictionary*)CFBridgingRelease(myDict);
wifiName = [dict valueForKey:@"SSID"];
}}
NSLog(@"wifiName:%@", wifiName);