applicationWillEnterForeground检查

时间:2018-11-03 23:53:33

标签: ios swift

在我的应用程序ios中,我有一个if,用于在运行该应用程序之前检查是否存在互联网连接;如果该应用程序处于脱机状态,则会发送一个屏幕以重试,代码如下:

        if CheckInternet.Connection(){

            let url = URL(string: "https://www.example.com/")
            let request = URLRequest(url: url!)
            webView.load(request)
        }

        else{
            let storyboard = UIStoryboard(name: "Main", bundle: nil)
            let secondVC = storyboard.instantiateViewController(withIdentifier: "OffViewController") as! OffViewController
            self.navigationController?.pushViewController(secondVC, animated: true)
        }

我也想先检查一下从后台返回的连接,我读了一些有关applicationWillEnterForeground的内容,但是如果在该函数内部进行检查怎么​​办?在android上更容易做到这一点,但是在ios n中我有主意

0 个答案:

没有答案