Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I get a NetService object,I try to do:

NSNetService *ss=[netArray objectAtIndex:indexPath.row];
ss.delegate=self;
[ss resolveWithTimeout:3.0];

On the delegate method:

-(void)netServiceDidResolveAddress:(NSNetService *)sender
{
   NSArray *address=sender.addresses;
   NSData *addressData=[NSData dataWithBytes:address length:sizeof(address)];
   /*
   How?
   */
}

Thanks.

share|improve this question
Please mind that the method NSNetService#address returns multiple objects: An array containing NSData objects, each of which contains a socket address for the service. (source). Therefore you should iterate the array. – JJD Sep 25 '12 at 9:09

1 Answer

I found a post which suggests the following solution.

NSString* addressString = [[NSString alloc] initWithData:addressData encoding:NSASCIIStringEncoding];

Though it does not output a human readable string for me... It might work for you.


This is what is written to the console when I print the NSData object.

<10026a5e 0a0a7893 00000000 00000000>

Meanwhile, I found out that the second segment is the hexadecimal form of the ip-address. In this example it is ...

10.10.120.147 // 0a0a7893

I have written a Host class that does the conversion. The NSString extension can be found here. I only use the first 16-bytes address and ignore all others. Feel free to extend the class.

share|improve this answer
I have solved it – Vic Sep 26 '12 at 10:33
So please share your solution with everybody else. This is how this platform works. – JJD Sep 26 '12 at 14:56
@Vic In case you do not post your own solution you could mark mine ... – JJD Oct 4 '12 at 22:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.