如何检测iPhone运行的是3G还是Wi-Fi?
一些代码行?有什么经验吗?
Some lines of code? Any experience?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
一些代码行?有什么经验吗?
Some lines of code? Any experience?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用 Apple 的 Reachability 代码来检索此信息:
例子:
You can use Apple's Reachability code to retrieve this information:
Example:
Apple 的
Reachability
类将为您提供此信息。http://developer.apple.com/library/ios/ #samplecode/Reachability/Introduction/Intro.html
Apple's
Reachability
class will give you this information.http://developer.apple.com/library/ios/#samplecode/Reachability/Introduction/Intro.html
从那时起,我制作了一个非常简单的基于块的 Reachability 包装器,它剥离了所有过时的类似 C 的 Reachability 代码,并将其倒入更多的 Cocoa 形式中。
用法如下:
参见 每日使用的块的可达性,位于 eppz!blog ,或者直接从 eppz!reachability at GitHub 获取。
它还可以使用 IP 地址,这被证明是一个非常罕见的可达性包装器功能。
Since than I made a pretty simple block based Reachability wrapper that strips all the outdated C-like Reachability code, poured into a much more Cocoa form.
Usage like:
See Reachability with blocks for everyday use at eppz!blog, or grab it directly from eppz!reachability at GitHub.
It also works with IP addresses, which turned out to be a pretty rare Reachability wrapper feature.