我正在尝试使用 AFNetworking 发送一个简单的 GET 请求,但没有调用完成处理程序。这是我的代码:
AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://google.com"]];
[client getPath:@"/"
parameters:nil
success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success");
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Failure");
}];
不知道我做错了什么,任何帮助将不胜感激。
编辑: NSURLConnectionDelegate 完成方法在 AFNetworking 中被调用,只是没有传递给完成块。