Tagged Questions
The nshost tag has no wiki summary.
5
votes
6answers
4k views
Find IP address in iphone
I want to find IP address in an application. I am able to find it. But, problem is, it works fins in iphone os 2.0 or so. But, in iphone os 3.0 it is giving me a warning:
warning: no '+currentHost' ...
2
votes
0answers
35 views
How to use NSHost to get the name behind a bunch of LAN ip addresses?
I know how to get the name behind an ip address using the terminal and dig. I.e:
dig @224.0.0.251 -p5353 -x 192.168.0.195 +short
However, I don't want to use NSTask in my application.
How can I use ...
1
vote
3answers
3k views
Alternatives to NSHost in iPhone app
I'm currently using this code
NSHost *host = [NSHost hostWithAddress:hostname];
if (host == nil) {
host = [NSHost hostWithName:hostname];
if (host == nil) {
[self ...
1
vote
4answers
1k views
Accessing IP Address with NSHost
I am trying to get the IP Address using NSHost. With the NSHost object I can use the addresses method to access an array of objects one of which is the IP Address. I fear though that the IP Address ...
1
vote
2answers
2k views
NSHost taking an awfully long time
I have an iPhone app that is a client for an existing server application.
I am using the following code to connect, and this code was working fine. Today I started work on the project, and something ...
0
votes
1answer
234 views
NSHost “currentHost” not recognized
i'd like to use this code to know my ip, but i got 2 warnings that i can't fix for now. I also found this post : Accessing IP Address with NSHost
but i just wanted to understand why this code does ...
0
votes
3answers
445 views
I tried to use NSHost and XCode didn't recognize it
I tried to add an NSHost method and XCode didn't recognize it.
Do you know why this happened?
0
votes
1answer
399 views
Why does code that uses NSHost compile correctly using the iPhone SDK?
I have some code that was written for Mac OS X and it makes a lot of use of the NSHost class. During my efforts to bring this code to the iPhone, I discovered that NSHost isn't available in the iPhone ...