在 iOS 中检索 HTTP 响应/HTTP 请求状态代码?
Posted
技术标签:
【中文标题】在 iOS 中检索 HTTP 响应/HTTP 请求状态代码?【英文标题】:Retrieve HTTPResponse/HTTPRequest status codes in iOS? 【发布时间】:2009-05-27 20:43:10 【问题描述】:我需要检查和评估我的 iPhone 应用程序中的 HTTP 状态代码。我有一个 NSURLRequest 对象和一个 NSURLConnection 成功(我认为)连接到该站点:
// create the request
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com/"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
// create the connection with the request
// and start loading the data
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection)
// Create the NSMutableData that will hold
// the received data
// receivedData is declared as a method instance elsewhere
receivedData=[[NSMutableData data] retain];
else
// inform the user that the download could not be made
我在这里得到了这个代码:https://web.archive.org/web/20100908130503/http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html
但它并没有(据我所知)说明访问 HTTP 状态代码的任何内容。
如何连接到站点,然后检查该连接的 HTTP 状态代码?
【问题讨论】:
【参考方案1】:这就是我的做法:
#pragma mark -
#pragma mark NSURLConnection Delegate Methods
- (void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response
NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
int responseStatusCode = [httpResponse statusCode];
但我使用的是异步 NSURLConnection,所以这可能对您没有帮助。但我希望它无论如何!
【讨论】:
这确实完成了我所需要的。唯一的问题是,如果 URL/IP Addy 不存在,则不会收到任何响应,因此应用程序将永远挂在那里。我目前正在寻找解决此问题的方法...任何建议将不胜感激... 查看 Apple 的 Reachabilty 代码。虽然只使用通知方法(默认情况下未在代码中启用,请参阅 init 方法中的 cmets)并始终设置您要检查的主机。 ***.com/questions/477852/…以上是关于在 iOS 中检索 HTTP 响应/HTTP 请求状态代码?的主要内容,如果未能解决你的问题,请参考以下文章