我用我的應用程序檢查我的網絡連接reacheability類...檢查網絡可用性
Reachability *reach = [Reachability reachabilityForInternetConnection];
NetworkStatus netStatus = [reach currentReachabilityStatus];
if (netStatus==NotReachable)
{
NSLog(@"NR");
}
我需要找到當網絡狀態改變時(即從到達的網絡狀態更改爲notreachable和副反之亦然)。
有沒有代表找到這個想法,有什麼建議嗎?
以及感謝.....但漢王我的應用程序可以跟蹤網絡狀態的變化? – Icoder
在應用程序委託中添加計時器並調用網絡連接方法。像這樣http://stackoverflow.com/questions/4538168/how-to-check-internet-status-in-iphone –
那麼我試過,bt我覺得它會阻止我的應用程序中的其他線程.... – Icoder