• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
[iPhone] get iPhone's IP address...
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[iPhone] get iPhone's IP address...


  • Subject: [iPhone] get iPhone's IP address...
  • From: James Lin <email@hidden>
  • Date: Mon, 20 Jul 2009 13:50:51 +0800

Hi all,

I found this code snipet that's supposed to return the iPhone's IP address.

I am wondering if anyone can confirm the method for me.
As i am told that this method works in an actual iPhone and not on the simulator.
But i won't have an iPhone until Aug 9th....


All i am getting in the simulator is something like : "fe80::21e: 52ff:fec6:b7401.618407e-303n1"

I am wondering if anyone can confirm the method works (ie, returns an actual ip address) on an actual iPhone for me....

The code:

- (NSString*) getNetAddr {
char iphone_ip[255];
strcpy(iphone_ip,"127.0.0.1"); // if everything fails
NSHost *myhost =[NSHost currentHost];
//NSHost *myhost = [[NSHost alloc] init];
if (myhost)
{
NSLog(@"myhost exits");
NSString *ad = [myhost address];
if (ad)
strcpy(iphone_ip, [ad cStringUsingEncoding: NSISOLatin1StringEncoding]);
}

return [NSString stringWithFormat:@"%s", iphone_ip];
}


Thank you in advance...

James

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: [iPhone] get iPhone's IP address...
      • From: glenn andreas <email@hidden>
    • Re: [iPhone] get iPhone's IP address...
      • From: Luke Hiesterman <email@hidden>
    • Re: [iPhone] get iPhone's IP address...
      • From: Jim Puls <email@hidden>
    • Re: [iPhone] get iPhone's IP address...
      • From: Clark Cox <email@hidden>
  • Prev by Date: Re: Core Data design patterns
  • Next by Date: Re: [iPhone] get iPhone's IP address...
  • Previous by thread: Re: "intelligent" flexible popup
  • Next by thread: Re: [iPhone] get iPhone's IP address...
  • Index(es):
    • Date
    • Thread