Figure out if there is internet or not, including wifi or data (Swift 3) [closed]

雨燕双飞 提交于 2019-12-02 20:19:22

问题


I found a reachibility code online, unfortunately it only works for the wifi Network. I Need a code to determine if a person has an internet connection: this includes wifi and data. Any help is greatly appreciated!


回答1:


You can use the Reachability framework. Install it through CocoaPods with pod 'ReachabilitySwift', '~> 3'.

To use it:
Declare a global variable:

var reachability = Reachability()!

Add an observer and start the notifier in your viewWillAppear:

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(true)

    NotificationCenter.default.addObserver(self, selector: #selector(self.reachabilityChanged),name: ReachabilityChangedNotification,object: reachability)
    do{
        try reachability.startNotifier()
    }catch{
        print("could not start reachability notifier")
    }
}

Add a function to detect changes in the network:

func reachabilityChanged(note: NSNotification) {
    reachability = note.object as! Reachability
    if !reachability.isReachable {
        // Network not reachable
    }
    else{
        if reachability.isReachableViaWiFi {
            // Reachable via WiFi
        } else {
            // Reachable via Cellular
        }
    }
}


来源:https://stackoverflow.com/questions/39920236/figure-out-if-there-is-internet-or-not-including-wifi-or-data-swift-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!