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

This question already has an answer here:

I got a webserver up and running in iphone by using Mongoose. But the problem is how can I get the ip address of my iphone/ipad to let the user's know where they can access the server. I found that [NSHost addresses] can do the job but I am developing for app store and this is undocumented method. Can anyone please help me on this ..

Thanks!

share|improve this question

marked as duplicate by Midhun MP, jszumski, 0x499602D2, php NoOB ఠ_ఠ, c4p Jun 8 at 15:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 21 down vote accepted
#include <ifaddrs.h>
#include <arpa/inet.h>

- (NSString *)getIPAddress {

    NSString *address = @"error";
    struct ifaddrs *interfaces = NULL;
    struct ifaddrs *temp_addr = NULL;
    int success = 0;
    // retrieve the current interfaces - returns 0 on success
    success = getifaddrs(&interfaces);
    if (success == 0) {
        // Loop through linked list of interfaces
        temp_addr = interfaces;
        while(temp_addr != NULL) {
            if(temp_addr->ifa_addr->sa_family == AF_INET) {
                // Check if interface is en0 which is the wifi connection on the iPhone
                if([[NSString stringWithUTF8String:temp_addr->ifa_name] isEqualToString:@"en0"]) {
                    // Get NSString from C String
                    address = [NSString stringWithUTF8String:inet_ntoa(((struct sockaddr_in *)temp_addr->ifa_addr)->sin_addr)];

                }

            }

            temp_addr = temp_addr->ifa_next;
        }
    }
    // Free memory
    freeifaddrs(interfaces);
    return address;

} 

http://www.makebetterthings.com/blogs/iphone/how-to-find-ip-address-of-iphone/

share|improve this answer
is it officially accepted by Apple? – Shivan Raptor Aug 10 '11 at 4:07
@Shivan Raptor - yes this is officially accepted by apple! – Saurabh Aug 10 '11 at 5:06
If I were you, I would use an allocated string, just so that it doesn't stay in memory too long. – Nathaniel Symer May 19 '12 at 19:59
Thanks a lot @Saurabh for this sample code, helped me a lot in my current project! – Linus Persson Jun 1 '12 at 9:34
You are most welcome @LinusPersson and thanks for upvote! – Saurabh Jun 1 '12 at 10:34

I believe [NSHost address]; is documented, it's listed here: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSHost_Class/Reference/Reference.html

Use [[NSHost currentHost] address]; to get the IP.

share|improve this answer
3  
its available for Mac OS ... not for iOS!! – user757812 Jul 24 '11 at 15:51
Avoid using NSHost: it's not thread safe. It must be run on the main thread, it's blocking and not deterministic. I've had an obvious-but-hard-to-explain deadlock thanks to it :( – Matt Melton Aug 20 '12 at 8:02

I would like to add a little correction here in reply to Matt Melton. NSHost methods are thread safe as per apple's documentation. You can check the link provided by TaylorP. Thank you

I am sorry but I don't have enough reputation to comment on any answer. I hope you'd understand :)

share|improve this answer
1  
should be a comment to the mentioned answer – Shreyos Adikari Mar 19 at 12:15

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