#pragma mark--得到系统的IP地址
- (NSString *)getIPAddress {
NSString *address =@"error";
structifaddrs *interfaces = NULL;
structifaddrs *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([[NSStringstringWithUTF8String:temp_addr->ifa_name]isEqualToString:@"en0"]) {
//Get NSString from C String
address = [NSStringstringWithUTF8String:inet_ntoa(((structsockaddr_in *)temp_addr->ifa_addr)->sin_addr)];
}
}
temp_addr = temp_addr->ifa_next;
}
}
//Free memory
freeifaddrs(interfaces);
return address;
}
本文介绍了一种在iOS设备上获取WiFi连接下IP地址的方法。通过遍历当前接口并检查接口名称与地址类型来实现。具体步骤包括调用getifaddrs函数获取接口列表,并从这些接口中筛选出名为en0的WiFi接口的IP地址。
761

被折叠的 条评论
为什么被折叠?



