如何在Objective-C中获取外部ip

时间:2011-03-27 16:39:51

标签: iphone objective-c cocoa-touch ios

我找了一些代码来帮助我获得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?

3 个答案:

答案 0 :(得分:4)

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

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

只需解析返回数据即可获得外部IP地址。

答案 1 :(得分:2)

在我的第二个答案here中查看示例。

简而言之,它使用* http://www.dyndns.org/cgi-bin/check_ip.cg * i来获得extenal I.P

答案 2 :(得分:1)

检查Apple的PortMapper,完全符合您的要求。

从iOS7开始,这是无关紧要的。