サーバーにリクエストを送信しようとしていますが、なぜ機能しないのかわかりません。これが私の現在のコードです:
NSURL *url = [NSURL URLWithString:@"http://www.www.www/www"];
AFHTTPClient *httpclient = [[AFHTTPClient alloc] initWithBaseURL:url];
[httpclient defaultValueForHeader:@"Accept"];
NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:valor, parametre, nil];
NSMutableURLRequest *request = [httpclient requestWithMethod:@"PUT"
path:@"http://www.www.www/www"
parameters:params];
//AFNetworking
AFHTTPRequestOperation *afnet = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[afnet start];
NSLog(@"%@: %@",[afnet responseString], [[afnet error] localizedDescription]);