iPhone 通过 3G 和 WIFI 的不同来源
通过 3G 连接加载与通过 WIFI 连接不同的源文件的最佳方式是什么?
谢谢
what is the best way to load a different source file over 3G connection than over WIFI?
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apple 的 Reachability
遵循自述文件并包含必要的框架。然后使用下面的代码示例:
如果您正在设计 Web 应用程序,则无法确定连接类型。
Apple's Reachability
Follow the ReadMe and include the necessary frameworks. Then use the code sample below:
If you are designing a web application, the connection type cannot be determined.
如果您所说的资源是指视频或音频流,那么请考虑从您的服务器提供 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/