我在寻找一些代码,这些代码将帮助我获得与iPhone连接的IP。

我找到这个:

- (NSString *)getIPAddress
{
    NSString *address = @"error";
    struct ifaddrs *interfaces = NULL;
    struct ifaddrs *temp_addr = NULL;
    int success = 0;

    // retrieve the current interfaces - returns 0 on success
    success = getifaddrs(&interfaces);
    if (success == 0)
    {
        // Loop through linked list of interfaces
        temp_addr = interfaces;
        while(temp_addr != NULL)
        {
            if(temp_addr->ifa_addr->sa_family == AF_INET)
            {
                // Check if interface is en0 which is the wifi connection on the iPhone
                if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"])
                {
                    // Get NSString from C String
                    address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];
                }
            }

            temp_addr = temp_addr->ifa_next;
        }
    }

    // Free memory
    freeifaddrs(interfaces);

    return address;
}


但问题是他让我获得了这个IP
10.0.0.1

如何获得外部IP?

最佳答案

从代码获取Internet ip地址的最简单方法是使用NSURLConnection

对于URL,您可以使用:
    http://www.whatismyip.com/m/mobile.asp
要么
   http://checkip.dyndns.com/

只需解析返回数据,您便拥有了外部IP地址。

关于iphone - 如何在Objective-C中获取外部IP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53475130/

10-10 03:58