獲取設備的局域網IP

//獲取手機的ip

NSString*ip = [GJWIPHelper ? ?deviceIPAdress];

//獲取IP的.h文件

#import

@interfaceGJWIPHelper :NSObject

+ (NSString*)deviceIPAdress;//獲取設備局域網中IP地址

@end

//獲取IP的.m文件

#import"GJWIPHelper.h"

#include <ifaddrs.h>

#include ?<arpa/inet.h>

@implementationGJWIPHelper

+ (NSString*)deviceIPAdress {

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

structifaddrs ?*interfaces =NULL;

structifaddrs ? *temp_addr =NULL;

intsuccess =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->if ?a_name] ?isEqualToString:@"en0"]) {

// Get NSString from C String

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

}

}

temp_addr = temp_addr->ifa_next;

}

}

freeifaddrs(interfaces);

return ? address;

}

@end

注:不喜勿噴!!!

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容