UIWebView 和 NSURLRequest 上没有互联网连接处理
我有一个完全基于网络的应用程序,需要互联网连接才能导航。基本上是通过 UIWebView 查看的网站。
我需要能够告诉用户,如果没有互联网连接,则无法加载任何页面。有没有一种简单的方法可以做到这一点。也许检查 NSURLRequest 是否失败?
干杯
I have an app which is entirely web-based and needs an internet connection to navigate around. Basically a website viewed through a UIWebView.
I need to be able to tell the user that no pages can load if they have no internet connection. Is there a simple way I can do this. Perhaps a check if NSURLRequest failed?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会查看Apple的 Reachability 示例代码来实现这个可靠。这种方法的优点之一是,即使用户实际上没有单击 Web 视图中的任何链接,您也可以通知用户当前的网络状态。
I would look at Apple's Reachability sample code to implement this reliably. One advantage of this approach is that you can notify the user as to current network status even the user isn't actually clicking on any links in the web view.
1> 将 SystemConfiguration.framework 添加到您的项目
2> 在 Connection.h 文件中导入以下 .h 文件
3> 在 Connection.h 文件中声明以下类方法
4> 在 Connection.m 文件中定义此方法
1>Add SystemConfiguration.framework to your project
2>import following .h files in your Connection.h file
3>declare the following class method in your Connection.h file
4>define this method in your Connection.m file