怎样获取本机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);
}];
这个不可以
http://automation.whatismyip.com/n09230945.asp
HTTP 错误 404.0 - Not Found
您要找的资源已被删除、已更名或暂时不可用。