OStack程序员社区-中国程序员成长平台

标题: ios - 在运行方法之前使用可达性检查连接 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 16:23
标题: ios - 在运行方法之前使用可达性检查连接

我想使用 Reachability检查我的应用程序中的 Internet 连接。

我找到了a tutorial它将在应用程序中进行设置。在本教程中,它解释了“第 4 步” - 可达性管理器。它提到了以下内容:

This is useful if an object needs direct access to the reachability instance that the singleton object manages.

这方面的例子是什么?什么对象需要直接访问实例?

在我的应用程序中,我有多种方法需要运行互联网连接。我想要实现的是以下两种方法之一:

  1. 当互联网连接丢失时显示 UIAlertView 询问 用户重试。

    注意:这仅在某些 View Controller 上,而不是全部 应用程序,因为我不需要完全限制访问 结束。

  2. 或者 - 我想使用一种方法来检查互联网连接 在运行需要 连接。

如何以这种方式使用可达性进行设置?



Best Answer-推荐答案


在第 4 节中,有一个 Reachability 包装器示例(但在该实现中没有 kReachabilityChangedNotification 处理)。那么应该如何使用呢? — 正如您在 MTReachabilityManager 的界面中看到的那样,有 1 种获取管理器单例实例的方法和 4 种使用它的方法:

+ (BOOL)isReachable;
+ (BOOL)isUnreachable;
+ (BOOL)isReachableViaWWAN;
+ (BOOL)isReachableViaWiFi;

对于需要连接的方法中的第二种方法,您必须执行以下操作:

if ([[MTReachabilityManager sharedManager] isReachable]) {
     //do internet
} else {
     //alert 'no internet' or something
}

对于第一种方法(从网络获取数据期间连接丢失),此包装器不会帮助您(未实现对 kReachabilityChangedNotification 的监听)。因此,您必须添加本教程第 3 部分(第 3 步:通知)中的代码 — 在调用网络代码之前在某处添加 kReachabilityChangedNotification 的监听器:

[[NSNotificationCenter defaultCenter] addObserver:self selectorselector(reachabilityDidChange name:kReachabilityChangedNotification object:nil];

并添加处理通知的方法(将在互联网更改其状态时触发):

- (void)reachabilityDidChangeNSNotification *)notification {
    Reachability *reachability = (Reachability *)[notification object];
    if ([reachability isReachable]) {
        NSLog(@"Reachable");
        //if before there was no internet - now you can do whatever user wants when there was no internet
    } else {
        NSLog(@"Unreachable");
        //alert retry
    }
}

关于ios - 在运行方法之前使用可达性检查连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19953398/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4