我有一个代码来检测我是否有互联网连接,有时它不能正常工作。这是代码:
-(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。有什么想法吗?
答案 0 :(得分:3)
我建议你按照链接阅读那里给出的最佳标记答案。它与我完美配合。 How to check for an active Internet connection on iOS or OSX?