首页 新闻 会员 周边 捐助

ios获取本机ip

0
[待解决问题]

怎样获取本机ip了

 

    NSURL *url = [NSURLURLWithString:@"http://automation.whatismyip.com/n09230945.asp"];

    

    self.requestASI = [ASIHTTPRequestrequestWithURL:url];

    

    __unsafe_unretainedASIHTTPRequest *_requestCopy = _requestASI;

        

    [_requestASIsetCompletionBlock:^{

        

        NSString *responseString = [_requestCopy responseString];

        

        if (responseString) {

            

            NSString *ip =[NSString stringWithFormat:@"%@", responseString];

            

            NSLog(@"responseString = %@", ip);

            

        };

        

    }];     

    

    [_requestCopy setFailedBlock:^{

       NSError *error = [_requestCopy error];

        NSLog(@"error is %@",error);

    }];

 

这个不可以

yf_0118的主页 yf_0118 | 菜鸟二级 | 园豆:208
提问于:2014-04-30 11:18
< >
分享
所有回答(1)
0

http://automation.whatismyip.com/n09230945.asp

HTTP 错误 404.0 - Not Found

您要找的资源已被删除、已更名或暂时不可用。

爱编程的大叔 | 园豆:30844 (高人七级) | 2014-04-30 16:36
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册