0

当我的应用程序第一次启动时,我需要将一些(大约 300-400 张图像)复制到文档文件夹中。我看到的是它需要很长时间的工具(即使现在我认为我只用 30-40 张图像进行测试)。一开始我的应用程序在手机上(不是在模拟器上)运行时崩溃,因为运行时间太长。现在我正在运行复制线程上所有文件的方法。该应用程序保持运行,但我认为 ios 会在几秒钟后杀死该线程。我应该将每个图像副本放在一个新线程上吗???

我的代码是这样的:(这是在线程中运行的部分)

-(void) moveInitialImagesFromBundleToDocuments {
//move all images.

    NSMutableArray *images = [MyParser getAllImagesList];
    for (int i = 0 ; i< [images count] ; i++) {
        [self copyFileFromBundleToDocuments:[images objectAtIndex:i]];
    }
}

- (void) copyFileFromBundleToDocuments: (NSString *) fileName {

    NSString *documentsDirectory = [applicationContext getDocumentsDirectory];
    NSString *sourcePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:fileName];
    NSString *destinationPath = [documentsDirectory stringByAppendingPathComponent:fileName];
    NSLog(@"Source Path: %@\n Documents Path: %@ \n Destination Path: %@", sourcePath, documentsDirectory, destinationPath);

    NSError *error = nil;

    [self removeFileFromPath:destinationPath];


    [[NSFileManager defaultManager] copyItemAtPath:sourcePath toPath:destinationPath error:&error];

    NSLog(@"File %@ copied", fileName);
    NSLog(@"Error description-%@ \n", [error localizedDescription]);
    NSLog(@"Error reason-%@", [error localizedFailureReason]);
}

有什么建议么?首先是为了加快复制速度,其次,我应该为我复制的每个文件创建一个新线程吗?


评论1:

这看起来不错。但我想调暗应用程序,以便用户在加载所有图像之前无法使用该应用程序。

我在 . 它确实阻止了用户运行应用程序,但我认为在手机上,线程正在被杀死,因为当我尝试它时,加载时间太长。实际上从未停止过。

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
hud.labelText = @"preparing...";
hud.dimBackground = YES;
hud.square = YES;
dispatch_async(dispatch_get_global_queue( DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
    // Do something...

    FileUtil *fileut = [[FileUtil alloc] init];
    [fileut moveInitialImagesFromBundleToDocuments];

    //Done something

    dispatch_async(dispatch_get_main_queue(), ^{
        [MBProgressHUD hideHUDForView:self.view animated:YES];
    });
});
4

1 回答 1

1

调用方法的时候,建议你用GCD把它移到后台线程,这样就可以像这样调用整个for循环了。(我还稍微改变了你的 for 循环以使其简单。

-(void) moveInitialImagesFromBundleToDocuments
{
//move all images and use GCD to do it

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{
    NSMutableArray *images = [MyParser getAllImagesList];
        for (id image in images) {
            [self copyFileFromBundleToDocuments:image];
        }
    });
}

关于使复制更快,我不知道任何解决方案。

于 2012-08-12T18:58:15.930 回答