誰かがカップルの値のhttp投稿を行う方法についていくつかのコードを貼り付けることができますか? Google検索でiPhoneのココアでhttp投稿を行う方法
0
A
答えて
-2
はPOST呼び出しをdoestいくつかの基本的なコードですNSURLConnectionのデリゲートメソッド。
0
第二の答えは、おそらく必要なもののように見える:あなたが適切に実装する必要が
//url is the appropriate url for the http POST call
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
[theRequest setHTTPMethod:@"POST"];
NSURLConnection *theConnection = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];
if(theConnection)
{
webData = [[NSMutableData data]retain];
}
else
{
NSLog(@"theConnection is NULL");
}
:ここ
0
//あなたはsendSynchronousRequest使用して同期NSURLConnectionを駆動することができます:returningResponse:エラー:正しいに(サーバーに送信され //が、応答が
を受信するまでそれが全体のスレッドをブロックします// thebodyData =ペイロードをフォーマット) //ペイロードのtheMimeType = mineType // urlはhttp POSTコールの適切なURLです
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
[theRequest setHTTPMethod:@"POST"];
NSURLConnection *theConnection = [[NSURLConnection alloc]initWithRequest:theRequest delegate:self];
if(theConnection)
{
webData = [[NSMutableData data]retain];
// give the details of the payload -- mine time and body content.
[theRequest setValue: theMimeType forHTTPHeaderField:@"Content-Type"];
[theRequest setHTTPBody:theBodyData];
}
else
{
NSLog(@"theConnection is NULL");
}
// the delegate methods templates...
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
[webData setLength:0]; // clear the data incase it was a redirect in between.
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[webData appendData:data]; // collect the data from server as it comes in.
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
[[NSAlert alertWithError:error] runModal]; // report the error
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
// Once this method is invoked, "webData" contains the complete result
}
関連する問題
- 1. http iPhoneにデータを投稿する
- 2. AWS PDF投稿http投稿
- 3. iphoneでGoogleサイトにファイルをアップロードするためのhttp投稿
- 4. iPhoneでココアを取得する方法
- 5. http投稿のヘッダー
- 6. SwiftのHTTP投稿
- 7. Ruby Net :: HTTP ::投稿投稿フォーム
- 8. iphoneでASIHTTPRequest経由でデータを投稿する方法
- 9. パーフェクトでCURLで投稿要求を行う方法
- 10. HTTP投稿者AJAX
- 11. Google Firebase HTTP投稿
- 12. Http投稿Guruヘルプフィドラー
- 13. 投稿を投稿してから投稿する方法
- 14. Ionic 1 AngularJS HTTP投稿とIonic 3 Angular HTTP投稿
- 15. C#でHTTP投稿データを取得する方法 - FiddlerCore?
- 16. ByteArrayOutputStreamをhttp経由で投稿する方法
- 17. 投稿方法リクエスト/フォーム投稿
- 18. URLを投稿するiPhone
- 19. iPhoneのFacebookに画像と動画を投稿する方法
- 20. HTTPへの投稿PHP
- 21. 角のHTTP投稿とREST
- 22. angular2 http投稿のリクエスト
- 23. iPad/iPhoneのGoボタンがフォームを投稿しないようにする方法
- 24. iphoneアップロード画像https投稿
- 25. Angularjsを使って状態エラーを投稿する方法$ http
- 26. httpクエリを使用してデータを投稿する方法は?
- 27. NodeMCU HTTPモジュールのHTTPS投稿要求の使用方法
- 28. javascriptを使用して投稿リクエストを行う方法
- 29. サーバーにhttpリクエスト(xmlデータ)を投稿する方法
- 30. ASP.Net(C#の)HTTPページからHTTPSへ投稿する方法