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方法。但我發現這個快速代碼。我無法理解this.especially語法!如何將swift代碼轉換爲客觀c代碼
什麼問題? – Andy