下面是我在代码中想要做什么的描述。 我希望使用Objective C在我的Mac应用程序中连接以太网或Wifi的IP地址。
如果我的WiFi已连接,那么我想获得Wifi的IP地址,或者如果以太网连接了以太网的IP地址。
我已经在这里看到很多答案,但它们都不适合我。
我希望这能用于我的MAC应用程序。
提前致谢。
这是我尝试过的代码之一。
- (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;
}
}
freeifaddrs(interfaces);
return address;
}
答案 0 :(得分:2)
试试这个:
+ (NSString*) getIPAddress
{
NSMutableString* address = [[NSMutableString alloc] init];
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)
{
NSString* ifa_name = [NSString stringWithUTF8String: temp_addr->ifa_name];
NSString* ip = [NSString stringWithUTF8String: inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];
NSString* name = [NSString stringWithFormat: @"%@: %@ ", ifa_name, ip];
[address appendString: name];
}
temp_addr = temp_addr->ifa_next;
}
}
freeifaddrs(interfaces);
return [address autorelease];
}