一台设备的可达性返回" NotReachable"尽管有4G

时间:2017-01-26 07:01:21

标签: ios objective-c reachability internet-connection 4g

我在我的应用程序中检查了Reachability检查,但在4G中的一个设备中,它返回NotReachable甚至iPhone获取Facebook消息和whatsapp。

如果在wifi上使用这个iPhone的工作。

可能是什么问题?

-(BOOL)isConnectedToInternet {
Reachability *networkReachability = [Reachability reachabilityWithHostName:HOST_NAME];
NetworkStatus networkStatus = [networkReachability currentReachabilityStatus];
return networkStatus != NotReachable;
}

1 个答案:

答案 0 :(得分:3)

我一直遇到可达性方面的问题。我现在倾向于不使用它而只是进行网络通话。如果没有网络,则AFNetworking将失败并显示代码NSError(-1009)的kCFURLErrorNotConnectedToInternet