0

データを保存および取得するための Web サービスを処理する iPhone アプリで、Web サービス処理に次のコードを使用しています。

ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];

[request setPostValue:@"1" forKey:@"id"];

[request setTag:100];

[request setDelegate:self];

[request startAsynchronous];

このコードにより、「requestFinished」メソッドで応答が得られました。私の問題は、Web サービスの応答が非常に遅いことです (インターネットの速度によって異なります)。Web サービスからの応答を非常に高速にする方法を教えてください。

4

2 に答える 2

1

postメソッドでjsonオブジェクトを送信したいと思います..遅延はサーバーに依存します(リクエストとレスポンスを処理する速度)が、プログレスバーとブロックを使用してネットワークリクエストを処理することをお勧めします..

loadingHUD = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
loadingHUD.labelText = NSLocalizedString(@"Downloading", nil);
loadingHUD.mode=MBProgressHUDModeAnnularDeterminate;
 NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES) lastObject];
// Add your filename to the directory to create your saved file location
NSString* destPath = [documentDirectory stringByAppendingPathComponent:[fileName stringByAppendingString:@".mov"]];
NSURL *url = [NSURL URLWithString:mainURL];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];

NSMutableURLRequest *request = [httpClient requestWithMethod:@"POST" path:postURL parameters:postRequest];
NSLog(@"postRequest: %@", postRequest);

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
operation.outputStream = [NSOutputStream outputStreamToFileAtPath:destPath append:NO];



[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject)
 {

         NSLog(@"Successfully downloaded file to %@",[[NSString alloc] initWithData:operation.responseData encoding:NSASCIIStringEncoding]);

     // Give alert that downloading successful.
     NSLog(@"Successfully downloaded file to %@", destPath);

     NSLog(@"response: %@", operation.responseString);  // Give alert that downloading successful.

     // [self.target parserDidDownloadItem:destPath];

     loadingHUD.detailsLabelText = [NSString stringWithFormat:@"%@ %i%%",@"Downloading",100];
     [loadingHUD hide:TRUE];

     [DBHelper savePurchaseId:fileName];
     [self movieReceived];

 }
    failure:^(AFHTTPRequestOperation *operation, NSError *error)
 {
     // Give alert that downloading failed
     NSLog(@"Error: %@", error);

     // [self.target parserDidFailToDownloadItem:error];
     [loadingHUD hide:TRUE];

 }];
[operation setDownloadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite)
 {
     // Progress
     progress = ((float)totalBytesWritten) / fileSize;
     loadingHUD.progress = progress;
          }];
[operation start];

}
于 2013-08-01T11:46:18.013 に答える