我使用可达性类来检查我的应用程序中的网络连接......
Reachability *reach = [Reachability reachabilityForInternetConnection];
NetworkStatus netStatus = [reach currentReachabilityStatus];
if (netStatus==NotReachable)
{
NSLog(@"NR");
}
我需要找出网络状态何时发生变化(即网络状态从可达变为不可达,反之亦然)。
有没有代表发现这个想法,有什么建议吗?