当“没有可用的蜂窝网络”时如何调用方法
我正在实现一个基于 API 的应用程序。根据要求,我需要在“没有可用的蜂窝网络”时显示警报。
I am implementing an API based application. As per the requirements I need to show an alert when "No Cellular Network Available".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要测试可达性,请使用名为 Reachability 的示例代码。
要显示警报,请使用
UIAlertView
。两者都在 Apple 文档中。
你不必说“你已经阅读了文档”或“这很紧急......”。你可以只问问题!这就是 Stack Overflow 的用途。
To test reachability, use this sample code called Reachability.
To show an alert, use
UIAlertView
.Both are in Apple's documentation.
You don't have to say "you went through the documentation" or "it's urgent...". You can just ask questions! That's what Stack Overflow is for.