作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果用户在我的 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)
}
最佳答案
您可能输错了方法。我发现它有两个错别字。
你不是这个意思吗?
if Reachability.checkInternetReachable() == false { /* */ }
预期声明意味着您调用的方法不存在。
关于ios - 我在尝试使用 Reachablitiy 时遇到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39915193/
如果用户在我的 xcode swift 应用程序中没有互联网连接,我想提醒用户,因此我使用 Reachablity 来执行此操作。但是当我将代码实现到 Viewcontroller 中时,我收到此错误
我是一名优秀的程序员,十分优秀!