最佳答案
我看到有一个我可以修改的已接受的HTTP状态代码列表,但我认为如果我能在故障块中获得HTTP状态代码,它会更清晰。
Ok, found the answer with the operation object
failure:^(AFHTTPRequestOperation *operation, NSError *error){
NSLog(@"error code %d",[operation.response statusCode]);
}];