根据 ASIHTTPRequest 的网站:
如果您的请求都是相同的广泛类型,但您想区分它们,您可以使用您自己的自定义数据设置每个请求的 userInfo NSDictionary 属性,您可以在完成/失败的委托方法中读取这些数据。
如何设置用户信息?
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
ASIFormDataRequest *request = [[ASIFormDataRequest alloc] initWithURL:url];
[request setDelegate:self];
[request startAsynchronous];