応答からビデオ ファイルをダウンロードしています。HUD進行状況のダウンロード進行状況バーを表示したい。しかし、どうすればそれができますか。私は検証jsonをサーバーに送信しており、ビデオファイルのバイトを送り返すサーバー検証を送信しています。HUDプログレスバーを使って、ダウンロードの何%が完了したかを表示したいです。
呼び出すと[request setDidReceiveDataSelector:@selector(request:didReceiveBytes:)];
、取得したバイト数が表示されますが、バイトはキャッシュファイルに保存されません (ファイルは電話に保存されません)。
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[[NSURL alloc] initWithString:@"http://testing.io/dev.php/video/verifyReceipt"]];
[request setPostValue:resultAsString forKey:@"verify"];// sending json in post
[request setDidReceiveDataSelector:@selector(request:didReceiveBytes:)];
[request setDidFinishSelector:@selector(requestDone:)];
[request setTimeOutSeconds:120];
[request setDelegate:self];
[request setNumberOfTimesToRetryOnTimeout:2];
[request setDownloadProgressDelegate:self];
request.showAccurateProgress = YES;
[request startSynchronous];
}
-(void)request:(ASIHTTPRequest *)request didReceiveData:(NSData *)data
{
[videoData appendData:data];// appending data with global NSmutabledata
NSLog(@"data is %@",data);
}
- (void)requestDone:(ASIHTTPRequest *)request{
//[MBProgressHUD hideHUDForView:self.view animated:YES];
// SAVED Video PATH
// Get the Document directory
NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
// Add your filename to the directory to create your saved video location
NSString* movLocation = [documentDirectory stringByAppendingPathComponent:[fileName stringByAppendingString:@".mov"]];
if(request.responseStatusCode==200)
{
[videoData writeToFile:movLocation atomically:NO];
NSLog(@"in request done sucsessfully downlaod and store in database %d",request.responseStatusCode);
[DBHelper savePurchaseId:fileName];
[self movieReceived];
}
else{
NSLog(@"in request downlaod and store in database failed %@",request.responseHeaders);
}
}
-(void)requestFailed:(ASIHTTPRequest *)request
{
NSLog(@"%@",request.error);
}