У меня простой NSURLRequest:
[NSURLConnection sendAsynchronousRequest:myRequest queue:queue completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
// do stuff with response if status is 200
}];
Как мне получить код состояния, чтобы убедиться, что запрос был принят?
ios
objective-c
неорганик
источник
источник
Ответы:
Приведите экземпляр
NSHTTPURLResponse
из ответа и используйте егоstatusCode
метод.[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 }];
источник
NSHTTPURLResponse
, или стоит проверить с помощьюisKindOfClass:
илиrespondsToSelector:
?Whenever you make an HTTP request, the NSURLResponse object you get back is actually an instance of the NSHTTPURLResponse class.
В Swift с iOS 9 это можно сделать так:
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() }
источник
Swift 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()
источник