我正在用 Objective-C 为几个 iPod 设备编程,我想知道一些事情。我正在开发一个利用服务器-客户端模型的应用程序,并且我正在使用带有 C 套接字的 UDP 协议。是否有一个类可以让我确定 iPod 设备的 IP 地址?在谷歌搜索其他论坛后,我没有找到任何东西。显然这个命令是行不通的,但是像 ipAddress = self.ip 这样的命令是我想到的。我正在设置多播 C 套接字,我正在尝试做一个类似于 ping 命令的解决方法,这显然在 Objective-C 中也不存在,或者据我所知(这是有限的,因为我只是在编程至少在今年夏天开始以来在Objective-C中)。有什么建议或提示吗?
问问题
5760 次
2 回答
8
这段代码将通过循环访问接口来检索它。
- (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;
}
于 2009-07-10T19:16:52.523 回答
0
你看到这个了吗? http://www.appsamuck.com/day4.html。我认为正确的答案是CFHost
在 SDK 中使用。
编辑
看来该项目中的源代码正在使用以下代码,这使得它成为一个完全无效的解决方案,除非 Apple 决定将其NSHost
放入 SDK。
-(NSString*)getAddress {
char iphone_ip[255];
strcpy(iphone_ip,"127.0.0.1"); // if everything fails
NSHost* myhost =[NSHost currentHost];
if (myhost)
{
NSString *ad = [myhost address];
if (ad)
strcpy(iphone_ip,[ad cStringUsingEncoding: NSISOLatin1StringEncoding]);
}
return [NSString stringWithFormat:@"%s",iphone_ip];
}
于 2009-07-10T19:12:57.537 回答