当前位置:  开发笔记 > 前端 > 正文

在iOS中检索HTTPResponse/HTTPRequest状态代码?

如何解决《在iOS中检索HTTPResponse/HTTPRequest状态代码?》经验,为你挑选了1个好方法。

我需要检查并评估我的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> Rob..:

我是这样做的:

    #pragma mark -
    #pragma mark NSURLConnection Delegate Methods
    - (void)connection:(NSURLConnection*)connection didReceiveResponse:(NSURLResponse*)response {
         NSHTTPURLResponse* httpResponse = (NSHTTPURLResponse*)response;
         int responseStatusCode = [httpResponse statusCode];
    }

但我正在使用异步NSURLConnection,所以这可能对你没有帮助.但我希望它能做到!


看看Apple的Reachabilty代码.仅使用通知方法(默认情况下未在代码中启用,请参阅init方法中的注释)并始终设置要检查的主机.http://stackoverflow.com/questions/477852/checking-for-internet-connectivity-in-objective-c
推荐阅读
pan2502851807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有