需要优化IOS平台上的网络利用率。有什么参考吗?
是否有任何 Apple 参考或指南来了解何时从应用程序传输数据?场景包括: 当无线电刚刚激活时触发 HTTP 连接。 此外,单次突发的最佳数据大小将有助于优化我的应用程序。我很感激这方面的任何参考。
Is there any Apple reference or guidelines to understand when to transmit data from application? Scenarios include : Just trigger the HTTP connection when the radio has just been active.
Also the optimal data size for a single burst would be helpful to optimize my app. I'd appreciate any references on this end.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Apple 提供了一个名为“Reachability”的类,它可能会对您有所帮助。当网络状态发生变化,即连接可用时,可以触发回调。
http://developer.apple.com/library/ios/ #samplecode/Reachability/Introduction/Intro.html
Apple provides a class called "Reachability" which would probably help you. It can trigger callbacks when the network status changes, i.e. connection becomes available.
http://developer.apple.com/library/ios/#samplecode/Reachability/Introduction/Intro.html