从UIAlertViewDelegate回调返回后台线程

时间:2012-10-19 01:00:04

标签: objective-c ios core-data grand-central-dispatch

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

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

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

我将UIAlertView提示发送到主线程,将我的导入器object指定为delegate并等待用户输入。

当用户输入密码并点击确定/取消时,委托回调仍在主线程上,因此我无法在没有大量工作的情况下操纵相应的核心数据实体(即存储对托管对象ID的引用等) ,创造新的背景等)。

我的问题:

是否可以返回导入过程正常的原始后台线程?我该怎么做呢?

谢谢, ROG

1 个答案:

答案 0 :(得分:3)

我尝试使用dispatch semaphore。将其保存在实例变量中。

@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);
        ...
    }
}