Objective-C アプリに JSON 文字列があり、それをサーバー上の PHP スクリプトに送信したいと考えています。
このデータを受信して解析するには、どの PHP コードを使用すればよいですか?
- (IBAction)send:(id)sender{
NSString *jsonString = [selectedPerson.jsonDictionary JSONRepresentation];
NSLog(@"ESE ES EL JSON %@", jsonString);
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init ];
NSString*post = [NSString stringWithFormat:@"&json=%@", jsonStri ng];
NSData*postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:NO];
NSLog(@"ESTO ES DATA %@", postData);
[request setURL:[NSURL URLWithSt ring:@"http://www.mydomine.com/recive.php"]];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content- type"];
[request setHTTPBody:postData];
}