如何在iOS下进行域名解析
//根据域名获取ip地址
-(NSString*)getIPWithHostName:(const NSString*)hostName
{
    const char *hostN= [hostName UTF8String];
    struct hostent* phot;
    
    @try {
        phot = gethostbyname(hostN);
        
    }
    @catch (NSException *exception) {
        return nil;
    }
    
    struct in_addr ip_addr;
    memcpy(&ip_addr, phot->h_addr_list[0], 4);
    char ip[20] = {0};
    inet_ntop(AF_INET, &ip_addr, ip, sizeof(ip));
    
    NSString* strIPAddress = [NSString stringWithUTF8String:ip];
    return strIPAddress;
}
#include <netdb.h> #include <sys/socket.h> #include <arpa/inet.h>
    NSString *string = [self getIPWithHostName:@"www.baidu.com"];
    NSLog(@"%@",string);
原文地址:http://blog.csdn.net/zhwezhwe/article/details/46457807