iOSで作成した新しいオブジェクトを、データ型POST
を使用するメソッドを使用して受信サーバーに送信したいと思います。iOSでサーバーからJSON
データを受信することについて私が知っていることから、 iOS 5の導入により、すべての処理がAppleによって簡素化されたということです。JSON
問題を解決するために私が取った最初のステップは次のようになりました。
//build an info object and convert to json
NSDictionary *newDatasetInfo = [NSDictionary dictionaryWithObjectsAndKeys:name, @"name", language, @"language", nil];
//convert object to data
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:newDatasetInfo options:kNilOptions error:&error];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:someURLSetBefore];
[request setHTTPMethod:@"POST"];
// any other things to set in request? or working this way?
[[NSURLConnection alloc] initWithRequest:request delegate:self];
// What to do with NSURLConnection? Or how to send differently?
しかし、POSTメソッドを使用してJSONオブジェクトをサーバーに送信する方法はまったくわかりません。誰か助けてくれませんか?