gpt4 book ai didi

ios - 网络请求期间 Wifi 不可用

转载 作者:行者123 更新时间:2023-11-29 02:30:48 25 4
gpt4 key购买 nike

我正在使用 AFNetowrking 同步调用 Web 服务。例如,我正在将一些数据上传到服务器,而上传时 wifi 已断开。我如何知道 wifi 不可用并取消请求?

最佳答案

不知道你有没有用过Reachability类。但如果不使用,则在下面的 Apple 示例代码中给出。

Reachability Introduction

在您的项目中包含这些类。现在借助 AppDelegate.m 文件,您可以跟踪网络的可用性。

didFinishLaunchingWithOptions: 方法中添加通知观察器。这将通知网络更改。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityDidChange:) name:kReachabilityChangedNotification object:nil];
}

当主机连接或网络连接发生任何变化时,将调用通知方法。

- (void)reachabilityDidChange:(NSNotification *)notification {

Reachability *reachability = (Reachability *)[notification object];
NetworkStatus internetStatus = [reachability currentReachabilityStatus];

switch (internetStatus) {
case NotReachable: {
NSLog(@"The internet is down.");
break;
}

case ReachableViaWiFi: {
NSLog(@"The internet is working via WIFI.");
break;
}

case ReachableViaWWAN: {
NSLog(@"The internet is working via WWAN.");
break;
}
}

NetworkStatus hostStatus = [reachability currentReachabilityStatus];

switch (hostStatus) {
case NotReachable: {
NSLog(@"A gateway to the host server is down.");
break;
}

case ReachableViaWiFi: {
NSLog(@"A gateway to the host server is working via WIFI.");
break;
}

case ReachableViaWWAN: {
NSLog(@"A gateway to the host server is working via WWAN.");
break;
}
}
}

当您失去连接时取消NSURLConnection 请求。

要取消正在进行的请求,请使用 - (void)cancel; NSURLConnection 的方法。

关于ios - 网络请求期间 Wifi 不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26904646/

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