为什么网络状态在 swift 中没有更新?

Why network status does not get updated in swift?

我正在使用 iOS 12 中引入的新 "Network" 库,但我不明白为什么在用户连接后网络状态没有更新为 .satisfied。

这是目前为止的代码:

import Network

class MapViewController: UIViewController {

    let networkMonitor = NWPathMonitor()
    let queue = DispatchQueue(label: "NetworkMonitor")

    override func viewDidLoad() {
        super.viewDidLoad()

        // check for internet connection
        networkMonitor.pathUpdateHandler = { path in
            if path.status != .satisfied {

                // alert the user to check internet connection
                let alert = UIAlertController(title: "Internet Error", message: "Unable to connect. Please check your internet connection.", preferredStyle: .alert)
                alert.addAction(UIAlertAction(title: "Cancel", style: .default, handler: nil))
                alert.addAction(UIAlertAction(title: "Retry", style: .default, handler: { (action) in
                    // TODO: after retry should update status but its not updated
                    print("Status after retry: \(path.status)")
                }))
                self.present(alert, animated: true, completion: nil)
            } else {
                print(path.status)
            }
        }


        networkMonitor.start(queue: queue)
     }
}

为了在模拟器中复制丢失连接的情况,我在视图加载之前关闭了 wifi 连接,当出现警报时,点击重试。令人惊讶的是,重试后的状态仍然是 .unsatisfied。为什么状态没有更新?

目标是轻按 "Retry",如果用户仍未连接,则继续显示警报,当用户连接后,轻按重试警报应被解除。

为了轻松设置网络监视器,您可以查看此教程:https://medium.com/@rwbutler/nwpathmonitor-the-new-reachability-de101a5a8835

请注意,我在实例化 NWPathMonitor() 时没有指定网络类型,因此它会检测所有类型的连接。

NWPath 是一个结构,因此它是不可变的。它不会在 pathUpdateHandler.

的给定调用中改变

网络路径可用后,您将获得 pathUpdateHandler 的后续调用,状态为 .satisfied

从用户体验的角度来看,这可能不是显示模态警报的好方法。您通常会使用一些其他指示器(吐司或图标)来指示网络连接不可用,一旦网络可用,这些指示器就会消失或更改。

在您的连接上替代或另外使用 .waitsForConnectivity