以下是我在代码中要确切执行的描述。
我想使用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;
}

最佳答案

试试这个:

+ (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];
}

10-08 02:48