我使用可達性類來檢查我的代碼中的WiFi連接。但有時問題出現,無線網絡打開,但沒有或低互聯網連接,在這裏我的代碼循環運行,等待任何來自所謂的web服務的響應,並掛斷和崩潰有時。要檢查wifi是否打開,但沒有互聯網連接
Reachability *ReachObj = [Reachability reachabilityForInternetConnection];
[ReachObj startNotifier];
NetworkStatus remoteHostStatus = [ReachObj currentReachabilityStatus];
if (remoteHostStatus==ReachableViaWiFi)
{
SecondView *ObjSecView=[[SecondView alloc]init];
[self presentModalViewController:ObjSecView animated:YES];
}
else
if (remoteHostStatus==NotReachable)
{
FirstView *objFrstView=[[FeedBackPopOverViewController alloc]init];
[self presentModalViewController:objFrstView animated:YES];
}
傢伙,我新來目的C. PLZ幫助我,在此先感謝: 下面的代碼,當我在從web服務 翻出一些數據這裏是我的代碼AlertView點擊OK執行。對於我的語法錯誤感到抱歉。