reachabilityWithAddress 在 Objective C 编程中不起作用

reachabilityWithAddress is not working in Objective C programming

我想通过 ip 检查服务器是否处于活动状态,例如 74.125.71.104(Google 的 ip)

//分配一个可达性对象

`struct sockaddr_in address;
address.sin_len = sizeof(address);
address.sin_family = AF_INET;
address.sin_port = htons(80);
address.sin_addr.s_addr = inet_addr("74.125.71.104");`

Reachability *reach = [Reachability reachabilityWithAddress:&address];

但那些不起作用。

当我更改为 reachabilityWithHostname 时,它正在运行。

请导入#include <arpa/inet.h>

 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
struct sockaddr_in address;
address.sin_len = sizeof(address);
address.sin_family = AF_INET;
address.sin_port = htons(8080);
address.sin_addr.s_addr = inet_addr("216.58.199.174"); //google ip
self.internetReachability = [Reachability reachabilityWithAddress:&address];
[self.internetReachability startNotifier];
[self updateInterfaceWithReachability:self.internetReachability];

编辑

根据您的评论,您的可达性块没有被调用。我总是使用不太了解可达性块的通知。所以我更喜欢使用如下通知。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
struct sockaddr_in address;
address.sin_len = sizeof(address);
address.sin_family = AF_INET;
address.sin_port = htons(8080);
address.sin_addr.s_addr = inet_addr("216.58.199.174");
self.internetReachability = [Reachability reachabilityWithAddress:&address];
[self.internetReachability startNotifier];
[self updateInterfaceWithReachability:self.internetReachability];

现在,只要您的互联网状态发生变化,reachabilityChanged 方法就会被 reachability 实例触发:)

- (void) reachabilityChanged:(NSNotification *)note {
    Reachability* curReach = [note object];
    [self updateInterfaceWithReachability:curReach];
}

最终将 updateInterfaceWithReachability 实现为

- (void)updateInterfaceWithReachability:(Reachability *)reachability {
   NetworkStatus netStatus = [reachability currentReachabilityStatus];
            switch (netStatus)
            {
                case NotReachable: {
                    //not reachable
                }
                break;
                case ReachableViaWWAN:
                case ReachableViaWiFi:        {
                    //reachable via either 3g or wifi
                }
                break;
            }
}

希望这对您有所帮助。