check Internet

PHOTO EMBED

Mon Feb 20 2023 06:19:26 GMT+0000 (Coordinated Universal Time)

Saved by @hasnat #ios #swift #check #internet #connection #connect #network

    func checkInternetConnection() {
        
        let internetConnected = Reachability.isConnectedToNetwork()
        
        if !internetConnected {
            print("no internet")
            self.showToast(message: "no internet")
        }
    }
content_copyCOPY