Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 iphone 应用程序在 3G 网络上运行良好。我正在使用苹果可达性类来检测网络可用性
然而,当从 wifi 区域移动到 3G 时,网络不可用,或者太慢了。为什么会发生……任何想法
这取决于您使用的传输协议。因为您的设备在两个不同的网络之间移动,任何现有的连接(例如您已经启动的 TCP 连接)将不再工作(尽管没有一些花哨的 TCP 切换魔法)。正因为如此,iOS 中依赖连接状态的后台服务可能会尝试重新连接,这可能会导致事情暂时变慢。
希望这能对事情有所启发。