0
У меня есть файл pdf с сервера.Записать файл в каталог NSDocument показать UIProgressView в iPhone?
Затем мне нужно загрузить файл в путь каталога NSDocument и его работу отлично, но я хочу показать UIProgressView для хранения каждого байта. Как это сделать, пожалуйста, помогите мне
Заранее спасибо
Я пытался сохранить, как это:
NSError *error;
NSArray *ipaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *idocumentsDir = [ipaths objectAtIndex:0];
NSString *idataPath = [idocumentsDir stringByAppendingPathComponent:@"File"];
NSLog(@"idataPath:%@",idataPath);
//Create folder here
if (![[NSFileManager defaultManager] fileExistsAtPath:idataPath])
{
[[NSFileManager defaultManager] createDirectoryAtPath:idataPath withIntermediateDirectories:NO attributes:nil error:&error];
}
// Image Download here
NSString *fileName = [idataPath stringByAppendingFormat:@"/image.jpg"];
NSLog(@"imagePathDOWNLOAD:%@",fileName);
NSData *pdfData1 = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[URLArray objectAtIndex:a]]];
[pdfData1 writeToFile:fileName atomically:YES];
Требуется прогресс при загрузке с веб-адреса или при хранении в документах? – Vedchi
при хранении в документах – SampathKumar