Mam proste żądanie NSURL:
[NSURLConnection sendAsynchronousRequest:myRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
// do stuff with response if status is 200
}];
Jak uzyskać kod statusu, aby upewnić się, że żądanie zostało zaakceptowane?
ios
objective-c
nieorganik
źródło
źródło
Odpowiedzi:
Rzutuj instancję
NSHTTPURLResponse
z odpowiedzi i użyj jejstatusCode
metody.[NSURLConnection sendAsynchronousRequest:myRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) { NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response; NSLog(@"response status code: %ld", (long)[httpResponse statusCode]); // do stuff }];
źródło
NSHTTPURLResponse
, czy warto to sprawdzić za pomocąisKindOfClass:
lubrespondsToSelector:
?Whenever you make an HTTP request, the NSURLResponse object you get back is actually an instance of the NSHTTPURLResponse class.
W Swift z iOS 9 możesz to zrobić w ten sposób:
if let url = NSURL(string: requestUrl) { let request = NSMutableURLRequest(URL: url, cachePolicy: NSURLRequestCachePolicy.ReloadIgnoringLocalAndRemoteCacheData, timeoutInterval: 300) let config = NSURLSessionConfiguration.defaultSessionConfiguration() let session = NSURLSession(configuration: config) let task = session.dataTaskWithRequest(request, completionHandler: { (data, response, error) -> Void in if let httpResponse = response as? NSHTTPURLResponse { print("Status code: (\(httpResponse.statusCode))") // do stuff. } }) task.resume() }
źródło
Szybki 4
let task = session.dataTask(with: request, completionHandler: { data, response, error -> Void in if let httpResponse = response as? HTTPURLResponse { print("Status Code: \(httpResponse.statusCode)") } }) task.resume()
źródło