iOS 獲取手機外網和內網IP地址

weixin_33918357發表於2018-01-24

//獲取外網IP 方法一:

-(NSString *)getWANIPAddress  {  

NSError *error;  

NSURL *ipURL = [NSURL URLWithString:@"http://pv.sohu.com/cityjson?ie=utf-8"];  

NSMutableString *ip = [NSMutableString stringWithContentsOfURL:ipURL encoding:NSUTF8StringEncoding error:&error];  

//判斷返回字串是否為所需資料  

if ([ip hasPrefix:@"var returnCitySN = "]) {  

//對字串進行處理,然後進行json解析  

//刪除字串多餘字串  

NSRange range = NSMakeRange(0, 19);  

[ip deleteCharactersInRange:range];  

NSString * nowIp =[ip substringToIndex:ip.length-1];  

//將字串轉換成二進位制進行Json解析  

NSData * data = [nowIp dataUsingEncoding:NSUTF8StringEncoding];  

NSDictionary * dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];  

NSLog(@"%@",dict);  

return dict[@"cip"] ? dict[@"cip"] : @"";  

    }  

return @"";  

}  

//獲取手機外網IP 方法二

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{

          NSURL *ipURL = [NSURL URLWithString:@"http://ip.taobao.com/service/getIpInfo2.php?ip=myip"];

          NSData *data = [NSData dataWithContentsOfURL:ipURL];

          NSDictionary *ipDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];

          NSString *ipStr = nil;

          if (ipDic && [ipDic[@"code"] integerValue] == 0) { //獲取成功

              ipStr = ipDic[@"data"][@"ip"];

          }

          NSLog(@"===%@",ipStr ? ipStr : @"");

          dispatch_async(dispatch_get_main_queue(), ^{

             //do something;

          });

    });

//獲取手機內網 IP  方法一

+(NSString *)getIPAddress {

    NSString *address = @"error";

    struct ifaddrs *interfaces = NULL;

    struct ifaddrs *temp_addr = NULL;

    int success = 0;

    // 檢索當前介面,在成功時,返回0

    success = getifaddrs(&interfaces);

    if (success == 0) {

          // 迴圈連結串列的介面

          temp_addr = interfaces;

          while(temp_addr != NULL) {

              if(temp_addr->ifa_addr->sa_family == AF_INET) {

                    // 檢查介面是否en0 wifi連線在iPhone上

                    if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"]) {

                        // 得到NSString從C字串

                        address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];

                    }

              }

              temp_addr = temp_addr->ifa_next;

          }

    }

    // 釋放記憶體

    freeifaddrs(interfaces);

    return address;

}

//獲取手機內網 IP  方法二

//必須在有網的情況下才能獲取手機的IP地址

+ (NSString *)deviceIPAdress {

    NSString *address = @"an error occurred when obtaining ip address";

    struct ifaddrs *interfaces = NULL;

    struct ifaddrs *temp_addr = NULL;

    int success = 0;

    success = getifaddrs(&interfaces);

    if (success == 0) { // 0 表示獲取成功

          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);

    NSLog(@"%@", address);

    return address;

}

相關文章