gpt4 book ai didi

iphone - iOS - 没有互联网连接时连接失败警报消息

转载 作者:行者123 更新时间:2023-11-28 22:52:30 26 4
gpt4 key购买 nike

在我的应用程序中,我想在用户没有互联网连接时显示一条警告消息我使用了下面的代码,但它从未进入该 block 它从不触发它从未调用过

我如何控制用户是否有互联网连接?

-(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 版本,我已经将我的委托(delegate)放入 .h 文件中

最佳答案

尝试 Reachability检查 Internet 连接可用性的类。它比 connection:(NSURLConnection *)connection didFailWithError 快得多,通常在没有 Internet 连接时触发此方法需要 1 分钟。但是 Reachability block 将在连接切换时立即触发。

关于iphone - iOS - 没有互联网连接时连接失败警报消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11601193/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com