こんにちは、NSURLConnection または JSon を使用して、4 つの UITextField から Web サイトの PHP スクリプトにデータを送信する方法を知りたいです。もっと簡単に、どうすればこれを正確に行うことができますか?
前もって感謝します!
こんにちは、NSURLConnection または JSon を使用して、4 つの UITextField から Web サイトの PHP スクリプトにデータを送信する方法を知りたいです。もっと簡単に、どうすればこれを正確に行うことができますか?
前もって感謝します!
最も簡単な方法 (同期)
NSString strForTextField1 = textField1.text;
NSString strForTextField2 = textField1.text;
NSString strForTextField3 = textField1.text;
NSString strForTextField4 = textField1.text;
//Build the request
NSString *stringOfRequest = [NSString stringWithFormat:@"www.yourserver.com?var1=%@&var2=%@&var3=%@&var4=%@", strForTextField1, strForTextField2, strForTextField3, strForTextField4];
NSURL *url = [NSURL URLWithString:stringOfRequest];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
NSURLResponse *response;
NSError *error;
//send it synchronous
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
if(!error)
{
//log response
NSLog(@"Response from server = %@", responseString);
}