IOS で次のコードを実行しようとしています。
AFHTTPRequestOperation *requestOperation = [self.httpClient HTTPRequestOperationWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.url.text]]
success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"reply data = %@", [[NSString alloc] initWithData:operation.responseData encoding:NSUTF8StringEncoding]);
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"%@", error);
}];
[requestOperation setAuthenticationAgainstProtectionSpaceBlock:^BOOL(NSURLConnection *connection, NSURLProtectionSpace *protectionSpace) {
return YES;
}];
次に、次のようなエラーが表示されます。
-[AFHTTPRequestOperation setAuthenticationAgainstProtectionSpaceBlock:]: 認識されないセレクターがインスタンス 0x75a81f0 に送信されました
私が渡しているブロックを見る限り、正しい戻り値の型とパラメーターがあります。ここで何が間違っていますか?