我检查我是否有Internet连接的代码不能正常工作

时间:2012-02-20 19:58:08

标签: iphone objective-c ios ipad

我有一个代码来检测我是否有互联网连接,有时它不能正常工作。这是代码:

-(void) webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
    UIAlertView *alert= [[UIAlertView alloc] initWithTitle:@"Error" message:@"Couldn't connect to the Internet. Please check your connection." delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];   
    [alert show];
    [alert release];
}

问题在于,有时网络不会加载其他东西,而不是因为它连接不良。我希望有更好的方法来检查WiFi。有什么想法吗?

1 个答案:

答案 0 :(得分:3)

我建议你按照链接阅读那里给出的最佳标记答案。它与我完美配合。 How to check for an active Internet connection on iOS or OSX?