在我的应用程序中,当用户没有互联网连接时,我想显示一条警报消息我使用了下面的代码,但它永远不会进入这个块它永远不会触发它永远不会调用
我如何控制用户是否有互联网连接?
-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
NSLog(@"connect");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Connection Failed" message:@"check your internet connection" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
}
注意:我使用 iOS 5.1 版本,我已将我的代表放入 .h 文件