正在检查 SWIFT 中的互联网连接
Checking Internet Connection in SWIFT
检查互联网连接的最简单方法是什么?
我找到了这个代码示例,但这是 Xcode11/Swift5 中最有效的方法?
在调用从互联网下载的函数之前,我只需要按下按钮检查连接。所以在调用我的函数之前进行简单的检查就可以了。这种持续监控是否最有效?或者我应该直接在我的按钮下使用一些东西。
import Network
class ViewController: UIViewController {
let monitor = NWPathMonitor()
let queue = DispatchQueue(label: "InternetConnectionMonitor")
override func viewDidLoad() {
monitor.pathUpdateHandler = { pathUpdateHandler in
if pathUpdateHandler.status == .satisfied {
print("Internet connection is on.")
} else {
print("There's no internet connection.")
}
}
monitor.start(queue: queue)
}
}
为此我使用了 ashleymills 的 Reachability 框架:
https://github.com/ashleymills/Reachability.swift
您只需通过以下方式导入:
import ReachabilitySwift
然后就在你的视图控制器中,你可以做例如:
let reachability = try! Reachability()
if reachability.isReachable {
print("Internet connection is on.")
}
有关如何使用闭包的更多示例,请参阅存储库的自述文件。
请注意,它是一个外部框架,可能不是最新的 Swift 版本。
导入系统配置:
import SystemConfiguration
在 viewController class 之前添加 class:
public class Reachability {
class func isConnected() -> Bool {
var noAddress = sockaddr_in(sin_len: 0, sin_family: 0, sin_port: 0, sin_addr: in_addr(s_addr: 0), sin_zero: (0, 0, 0, 0, 0, 0, 0, 0))
noAddress.sin_len = UInt8(MemoryLayout.size(ofValue: noAddress))
noAddress.sin_family = sa_family_t(AF_INET)
let defaultRouteReachability = withUnsafePointer(to: &noAddress) {
[=11=].withMemoryRebound(to: sockaddr.self, capacity: 1) {noSockAddress in
SCNetworkReachabilityCreateWithAddress(nil, noSockAddress)
}
}
var flags: SCNetworkReachabilityFlags = SCNetworkReachabilityFlags(rawValue: 0)
if SCNetworkReachabilityGetFlags(defaultRouteReachability!, &flags) == false {
return false
}
let isReachable = (flags.rawValue & UInt32(kSCNetworkFlagsReachable)) != 0
let needsConnection = (flags.rawValue & UInt32(kSCNetworkFlagsConnectionRequired)) != 0
let ret = (isReachable && !needsConnection)
return ret
}
}
现在在 viewDidLoad 中检查连接:
if Reachability.isConnected(){
print("Internet Connection is ON")
} else {
print("Internet Connection OFF")
}
检查互联网连接的最简单方法是什么?
我找到了这个代码示例,但这是 Xcode11/Swift5 中最有效的方法?
在调用从互联网下载的函数之前,我只需要按下按钮检查连接。所以在调用我的函数之前进行简单的检查就可以了。这种持续监控是否最有效?或者我应该直接在我的按钮下使用一些东西。
import Network
class ViewController: UIViewController {
let monitor = NWPathMonitor()
let queue = DispatchQueue(label: "InternetConnectionMonitor")
override func viewDidLoad() {
monitor.pathUpdateHandler = { pathUpdateHandler in
if pathUpdateHandler.status == .satisfied {
print("Internet connection is on.")
} else {
print("There's no internet connection.")
}
}
monitor.start(queue: queue)
}
}
为此我使用了 ashleymills 的 Reachability 框架: https://github.com/ashleymills/Reachability.swift
您只需通过以下方式导入:
import ReachabilitySwift
然后就在你的视图控制器中,你可以做例如:
let reachability = try! Reachability()
if reachability.isReachable {
print("Internet connection is on.")
}
有关如何使用闭包的更多示例,请参阅存储库的自述文件。 请注意,它是一个外部框架,可能不是最新的 Swift 版本。
导入系统配置:
import SystemConfiguration
在 viewController class 之前添加 class:
public class Reachability {
class func isConnected() -> Bool {
var noAddress = sockaddr_in(sin_len: 0, sin_family: 0, sin_port: 0, sin_addr: in_addr(s_addr: 0), sin_zero: (0, 0, 0, 0, 0, 0, 0, 0))
noAddress.sin_len = UInt8(MemoryLayout.size(ofValue: noAddress))
noAddress.sin_family = sa_family_t(AF_INET)
let defaultRouteReachability = withUnsafePointer(to: &noAddress) {
[=11=].withMemoryRebound(to: sockaddr.self, capacity: 1) {noSockAddress in
SCNetworkReachabilityCreateWithAddress(nil, noSockAddress)
}
}
var flags: SCNetworkReachabilityFlags = SCNetworkReachabilityFlags(rawValue: 0)
if SCNetworkReachabilityGetFlags(defaultRouteReachability!, &flags) == false {
return false
}
let isReachable = (flags.rawValue & UInt32(kSCNetworkFlagsReachable)) != 0
let needsConnection = (flags.rawValue & UInt32(kSCNetworkFlagsConnectionRequired)) != 0
let ret = (isReachable && !needsConnection)
return ret
}
}
现在在 viewDidLoad 中检查连接:
if Reachability.isConnected(){
print("Internet Connection is ON")
} else {
print("Internet Connection OFF")
}