简体   繁体   中英

Swift 2 to Swift 3

In Swift 2 I was able to write this statement:

var reachability = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "www.apple.com").takeRetainedValue()

In Swift 3 now it says that SCNetworkReachability? has no member takeRetainedValue().

只需删除不再需要的takeRetainedValue()即可。

var reachability = SCNetworkReachabilityCreateWithName(kCFAllocatorDefault, "www.apple.com")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM