我找了一些代码来帮助我获得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地址的最简单方法是使用NSURLConnection。
对于您可以使用的URL:http://www.whatismyip.com/m/mobile.asp或http://checkip.dyndns.com/
只需解析返回数据,即可获得外部IP地址。
看看我的第二个答案here中的示例。
简而言之,它使用* http://www.dyndns.org/cgi-bin/check_ip.cg * i来获得外部I.P.
检查Apple的PortMapper,完全符合您的要求。
从iOS7开始,这是无关紧要的。