requestFailed/requestFinished関数から要求とともに送信された(POST)データにアクセスする方法。あなたはこれを試みることができるアクセス要求データは、requestFailed関数内で送信されます。ASIHttpRequest
- (void) abc {
NSString *postString = @"john";
NSURL *url = [NSURL URLWithString:@"http://abc.com"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setPostValue:postString forKey:@"name"];
[request setDelegate:self];
[request startAsynchronus];
}
- (void) requestFinished:(ASIHTTPRequest *)request
{
// Question is whether the request holds the sent post values.
// If it holds. how can we access them.
// i tried using [request valueForKey:@"name"];
// but it won't work.
}
ええ、ASIHTTPREQUESTドキュメントからそれを得ました..とにかく情報のおかげで。 – divein