gpt4 book ai didi

ios - 我在尝试使用 Reachablitiy 时遇到错误

转载 作者:行者123 更新时间:2023-11-30 13:00:56 25 4
gpt4 key购买 nike

如果用户在我的 xcode swift 应用程序中没有互联网连接,我想提醒用户,因此我使用 Reachablity 来执行此操作。但是当我将代码实现到 Viewcontroller 中时,我收到此错误:

Expected Declaration

我也尝试将我的代码放入viewdidload中,但没有成功。

这是代码:

 if Reachability.checkIntenetRechable() == false {
let alertView = UIAlertCole: "APP_NAME", message: "Please check your internet connection.", preferredStyle: UIAlertControllerStyle.Alert)
//alertView.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: { (action: UIAlertAction ) in }))
alertView.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action: UIAlertAction ) in
// Put some code for okay button
}))
self.presentViewController(alertView, animated: true, completion: nil)
}

Image With Error

最佳答案

您可能输错了方法。我发现它有两个错别字。

你不是这个意思吗?

if Reachability.checkInternetReachable() == false { /* */ }

预期声明意味着您调用的方法不存在

关于ios - 我在尝试使用 Reachablitiy 时遇到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39915193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com