Sample code for 30+ languages & platforms
Objective-C

DNS Query NS Records

See more DNS Examples

Shows how to perform a DNS query to retrieve NS records.

Note: This example requires Chilkat v9.5.0.96 or later.

Chilkat Objective-C Downloads

Objective-C
#import <CkoDns.h>
#import <CkoJsonObject.h>
#import <NSString.h>

BOOL success = NO;

CkoDns *dns = [[CkoDns alloc] init];

CkoJsonObject *json = [[CkoJsonObject alloc] init];
json.EmitCompact = NO;

success = [dns Query: @"NS" domain: @"x.com" answer: json];
if (success == NO) {
    NSLog(@"%@",dns.LastErrorText);
    return;
}

NSLog(@"%@",[json Emit]);

// Sample response.
// Parsing code below..

// {
//   "answer": {
//     "ns": [
//       {
//         "name": "x.com",
//         "ttl": 86400,
//         "domain": "alexia.ns.cloudflare.com"
//       },
//       {
//         "name": "x.com",
//         "ttl": 86400,
//         "domain": "tosana.ns.cloudflare.com"
//       }
//     ]
//   }
// }

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

NSString *name = 0;
int ttl;
NSString *domain = 0;

int i = 0;
int count_i = [[json SizeOfArray: @"answer.ns"] intValue];
while (i < count_i) {
    json.I = [NSNumber numberWithInt: i];
    name = [json StringOf: @"answer.ns[i].name"];
    ttl = [[json IntOf: @"answer.ns[i].ttl"] intValue];
    domain = [json StringOf: @"answer.ns[i].domain"];
    i = i + 1;
}