私はテキストフィールドに値をpostしてJSON文字列を返します。値を投稿する/ JSON文字列を受け取る方法。ここObjective CでWebページからJson文字列を取得する方法
は私のコードは次のとおりです。
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.donxebuyt.com/"]];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request setPostValue:txtFrom.text forKey:@"id_locA"];
[request setRequestMethod:@"POST"];
[request setCompletionBlock:^{
NSString *responseString = [request responseString];
NSLog(@"Response: %@", responseString);
}];
[request setFailedBlock:^{
NSError *error = [request error];
NSLog(@"Error: %@", error.localizedDescription);
}];
[request startAsynchronous];