after upgrading pod reachability 3, i am getting above error
See readme for Swift 3 breaking changes
Got the same issue.. Below code doesn't support Swift 3. Any solution ?
do {
reachability = try Reachability.reachabilityForInternetConnection()
} catch {
print("Unable to create Reachability")
return
}
See readme for swift 3 breaking changes
RTFM: https://github.com/ashleymills/Reachability.swift#swift-3-breaking-changes
do {
reachability = try Reachability.reachabilityForInternetConnection()
} catch {
print("Unable to create Reachability")
return
}
is now simply,
let reachability = Reachability()
reachability.isReachable
works for me for ReachabilitySwift
_Swift version 4.0.3_
Most helpful comment
RTFM: https://github.com/ashleymills/Reachability.swift#swift-3-breaking-changes
is now simply,
let reachability = Reachability()