次のような asiformdatarequest.my コードを使用して、サーバーに画像をアップロードするつもりです。
UIImage *image = [UIImage imageNamed:@"testicon.jpg"];
NSData *imgData = [[NSData alloc] initWithData:UIImageJPEGRepresentation((image), 0.5)];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:ADDRESS,myType,action]];
ASIFormDataRequest *currentRequest = [ASIFormDataRequest requestWithURL:url];
[currentRequest setPostFormat:ASIMultipartFormDataPostFormat];
[currentRequest addRequestHeader:@"Content-Type" value:@"multipart/form-data"];
[currentRequest setRequestMethod:@"POST"];
[currentRequest setPostValue:@"1" forKey:@"user_id"];
NSLog(@"responseString = %@",responseString);
しかし、サーバーは正しい結果を返しません。何が問題なのですか?