Last active
May 24, 2020 08:51
-
-
Save MrCrambo/54a1bd8a54243a463573b574a01fcb3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getWiFiName() -> String? { | |
var ssid: String? | |
if let interfaces = CNCopySupportedInterfaces() as NSArray? { | |
for interface in interfaces { | |
if let interfaceInfo = CNCopyCurrentNetworkInfo(interface as! CFString) as NSDictionary? { | |
ssid = interfaceInfo[kCNNetworkInfoKeySSID as String] as? String | |
break | |
} | |
} | |
} | |
return ssid | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment