ACTUALIZACIÓN PARA iOS 10 y superior
CNCopySupportedInterfaces ya no está en desuso en iOS 10. ( Referencia de la API )
Debe importar SystemConfiguration / CaptiveNetwork.h y agregar SystemConfiguration.framework a las bibliotecas vinculadas de su destino (en las fases de compilación).
Aquí hay un fragmento de código en swift (Respuesta de RikiRiocma) :
import Foundation
import SystemConfiguration.CaptiveNetwork
public class SSID {
class func fetchSSIDInfo() -> String {
var currentSSID = ""
if let interfaces = CNCopySupportedInterfaces() {
for i in 0..<CFArrayGetCount(interfaces) {
let interfaceName: UnsafePointer<Void> = CFArrayGetValueAtIndex(interfaces, i)
let rec = unsafeBitCast(interfaceName, AnyObject.self)
let unsafeInterfaceData = CNCopyCurrentNetworkInfo("\(rec)")
if unsafeInterfaceData != nil {
let interfaceData = unsafeInterfaceData! as Dictionary!
currentSSID = interfaceData["SSID"] as! String
}
}
}
return currentSSID
}
}
( Importante: CNCopySupportedInterfaces devuelve nulo en el simulador).
Para Objective-c, vea la respuesta de Esad aquí y abajo
+ (NSString *)GetCurrentWifiHotSpotName {
NSString *wifiName = nil;
NSArray *ifs = (__bridge_transfer id)CNCopySupportedInterfaces();
for (NSString *ifnam in ifs) {
NSDictionary *info = (__bridge_transfer id)CNCopyCurrentNetworkInfo((__bridge CFStringRef)ifnam);
if (info[@"SSID"]) {
wifiName = info[@"SSID"];
}
}
return wifiName;
}
ACTUALIZACIÓN PARA iOS 9
A partir de iOS 9, Captive Network está en desuso *. ( fuente )
* Ya no está en desuso en iOS 10, ver arriba.
Se recomienda usar NEHotspotHelper ( fuente )
Deberá enviar un correo electrónico a apple a networkextension@apple.com y solicitar derechos. ( fuente )
Código de muestra ( no es mi código. Vea la respuesta de Pablo A ):
for(NEHotspotNetwork *hotspotNetwork in [NEHotspotHelper supportedNetworkInterfaces]) {
NSString *ssid = hotspotNetwork.SSID;
NSString *bssid = hotspotNetwork.BSSID;
BOOL secure = hotspotNetwork.secure;
BOOL autoJoined = hotspotNetwork.autoJoined;
double signalStrength = hotspotNetwork.signalStrength;
}
Nota al margen: Sí, desaprobaron CNCopySupportedInterfaces en iOS 9 e invirtieron su posición en iOS 10. Hablé con un ingeniero de redes de Apple y la reversión se produjo después de que muchas personas archivaron Radares y hablaron sobre el problema en los foros de desarrolladores de Apple.