1

我有一个从档案中读取的导入序列,解压缩包含的文件并为每个文件创建相应的核心数据实体。这整个过程发生在后台,并且已经为每个线程等创建了一个单独的上下文,所以一切正常。

事实证明,这个特定导入序列的一个理想特性是我们允许任何输入文件受密码保护(其中有几个包含在存档中)所以我需要检查文件是否受密码保护在这种情况下将提示用户通过UIAlertView.

这就是我的问题开始的地方。

UIAlertView按照我应该的方式将提示发送到主线程,将我的 Importer 分配objectdelegate并等待用户输入。

当用户输入密码并点击 OK/Cancel 时,委托回调仍在主线程上,因此如果没有大量工作(即存储对托管对象 ID 的引用等,创建新的),我将无法再操作相应的核心数据实体上下文等)。

我的问题:

是否可以返回正在执行导入过程的原始后台线程?我该怎么办?

谢谢,罗格

4

1 回答 1

3

我会尝试使用调度信号量。将其保存在实例变量中。

@interface MyClass ()
{
    dispatch_semaphore_t dsema;
}
@end

然后,在后台线程方法中:

// this is the background thread where you are processing the archive files
- (void)processArchives
{
    ...
    self.dsema = dispatch_semaphore_create(0);
    dispatch_async(dispatch_get_main_queue(), ^{
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle: @"Title"
                                                                ...
                                                           delegate: self
                                                                ...
        ];
        [alertView show];
    });

    dispatch_semaphore_wait(self.dsema, DISPATCH_TIME_FOREVER);
    // --> when you get here, the user has responded to the UIAlertView <--

    dispatch_release(self.dsema);
    ...
}

UIAlertView调用此委托方法:

// this is running on the main queue, as a method on the alert view delegate
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    // do stuff with alertView
    if (buttonIndex == [alertView firstOtherButtonIndex]) {
        ...
        // when you get the reply that should unblock the background thread, unblock the other thread:
        dispatch_semaphore_signal(self.dsema);
        ...
    }
}
于 2012-10-21T19:14:26.057 回答