iPhone 通过 3G 和 WIFI 的不同来源

发布于 2024-11-06 07:21:04 字数 54 浏览 4 评论 0原文

通过 3G 连接加载与通过 WIFI 连接不同的源文件的最佳方式是什么?

谢谢

what is the best way to load a different source file over 3G connection than over WIFI?

thanx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉殇 2024-11-13 07:21:04

Apple 的 Reachability

遵循自述文件并包含必要的框架。然后使用下面的代码示例:

NetworkStatus status = [[Reachability reachabilityForInternetConnection] currentReachabilityStatus]; 
if (status == ReachableViaWiFi) { 
        // wifi connection 
if (status == ReachableViaWWAN) { 
        // wwan connection (could be GPRS, 2G or 3G) 
} else { 
        // no network 
}

如果您正在设计 Web 应用程序,则无法确定连接类型。

Apple's Reachability

Follow the ReadMe and include the necessary frameworks. Then use the code sample below:

NetworkStatus status = [[Reachability reachabilityForInternetConnection] currentReachabilityStatus]; 
if (status == ReachableViaWiFi) { 
        // wifi connection 
if (status == ReachableViaWWAN) { 
        // wwan connection (could be GPRS, 2G or 3G) 
} else { 
        // no network 
}

If you are designing a web application, the connection type cannot be determined.

地狱即天堂 2024-11-13 07:21:04

如果您所说的资源是指视频或音频流,那么请考虑从您的服务器提供 HTTP 流资源。这样,框架将选择最适合当前连接的方式,甚至在连接状态发生变化时更新源。

在此处阅读更多信息:https://developer.apple.com/streaming/

If you by resources mean video or audio streams then consider providing HTTP streaming resources from your server. This way the frameworks will choose what is best for the current connection, and even update the source if the connection status changes.

Read more here: https://developer.apple.com/streaming/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文