web-dev-qa-db-ja.com

非同期URLリクエストを送信する方法は?

URLリクエストから非同期に戻り値1または0のみを取得する方法を知りたいのですが。

現在、私はこの方法でそれを行います:

NSString *UTCString = [NSString stringWithFormat:@"http://web.blah.net/question/CheckQuestions?utc=%0.f",[lastUTCDate timeIntervalSince1970]];
NSLog(@"UTC String %@",UTCString);
NSURL *updateDataURL = [NSURL URLWithString:UTCString];
NSString *checkValue = [NSString stringWithContentsOfURL:updateDataURL encoding:NSASCIIStringEncoding error:Nil];
NSLog(@"check Value %@",checkValue);

これは機能しますが、URLから返信を受け取るまでメインスレッドをブロックしていますが、メインスレッドの代わりに別のスレッドでそれを行うように設定するにはどうすればよいですか?

編集:答え私はこれで私の関数を呼び出します、それはうまくいきます:)

[self performSelectorInBackground:@selector(shouldCheckForUpdate) withObject:nil];
21
Desmond

NSURLConnectionクラスを使用できます

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
[[[NSURLConnection alloc] initWithRequest:request delegate:self] autorelease];

デリゲートメソッドを使用して応答とエラーを処理します。

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
- (void)connectionDidFinishLoading:(NSURLConnection *)connection 

NSURLConnectionの実装を見つけることができます

編集:NSURLConnectionはAppleがURLリクエストの配置方法として推奨されています。しかし、私は AFNetworking ライブラリが時間の節約、実装が簡単、堅牢でありながらサードパーティの実装としてシンプルです。試してみてください。

28
Adil Soomro

これを試して :

.h:

NSMutableData *responseData;

.m:

- (void)load 
{
  NSURL *myURL = [NSURL URLWithString:@"http://www.example.com"];
  NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:myURL cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60];

  [[NSURLConnection alloc] initWithRequest:request delegate:self];
}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response 
{
  responseData = [[NSMutableData alloc] init];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data 
{
  [responseData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error 
{
  [responseData release];
  [connection release];
  [textView setString:@"Unable to fetch data"];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection 
{
  NSLog(@"Succeeded! Received %d bytes of data",[responseData
                                                   length]);
  NSString *txt = [[[NSString alloc] initWithData:responseData encoding: NSASCIIStringEncoding] autorelease];
}
24
Maulik

NSURLConnectionを使用してリクエストを行います。 NSURLConnectionのメソッドを使用して、同期接続または非同期接続を開始できます。

同期してデータをロードする

+ sendSynchronousRequest:returningResponse:error:

非同期的にデータをロードする

+ connectionWithRequest:delegate:
– initWithRequest:delegate:
– initWithRequest:delegate:startImmediately:
– start

Apple Developer API Reference。のNSURLConnectionクラスを確認してください。

5

https://Gist.github.com/knmshk/3027474 から恥知らずにコピーします。すべてのクレジットは https://Gist.github.com/knmshk に移動します。

xmlData = [[NSMutableData alloc] init];
NSURL *url = [NSURL URLWithString:
@"http://forrums.bignerdranch.com/smartfeed.php?"
@"limit=NO_LIMIT&count_limit20&sort_by=standard&"
@"feed_type=RSS2.0&feed_style=COMPACT"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
//connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
NSOperationQueue *queue = [[NSOperationQueue alloc]init];
[NSURLConnection sendAsynchronousRequest:request
                                   queue:queue
                       completionHandler:^(NSURLResponse *response, NSData *data, NSError *error){
                           if (error) {
                               xmlData = nil;
                               NSLog(@"error:%@", error.localizedDescription);
                           }
                           [xmlData appendData:data];
                       }];
3
Jingshao Chen

LazyTableImagesと呼ばれるiOS XCodeドキュメントに例があります。これは、スクロールが停止した後、画面に表示されるUITableViewセルに非同期URLと非同期イメージをロードします。プロトコル、非同期データ処理などの優れた例.

2
Jay Imerman