import Foundation
import SystemConfiguration
for interface in SCNetworkInterfaceCopyAll() as NSArray {
if let name = SCNetworkInterfaceGetBSDName(interface as! SCNetworkInterface),
let type = SCNetworkInterfaceGetInterfaceType(interface as! SCNetworkInterface) {
print("Interface \(name) is of type \(type)")
}
}
いずれかを助けてください。私は自分のコードでSCNetworkInterfaceメソッドを使いたいです。しかし、私はこの迅速なコードを発見した。私はこれを理解できません。特に構文は!スワイプコードを目的のCコードに変換するには
何が質問ですか? – Andy