0

我有一个模式视图控制器出现,检查 Internet 上的服务,然后在完成后自行关闭。笔尖包含一个活动指示器和一个标签,用于通知用户正在发生的事情。

更新完成后,标签变为“更新完成”,然后关闭视图控制器。但是,我希望它将关闭延迟几秒钟,让用户有机会在文本消失之前看到它。所以我这样做了:

#pragma mark - AssetLoaderServiceDelegate

- (void)assetLoaderServiceDidFinishLoading:(AssetLoaderService *)service
{
    [self.spinner stopAnimating];
    self.infoLabel.text = @"Update complete";
    [self performSelector:@selector(dismissUpdater) withObject:nil afterDelay:2.0];
}

- (void)dismissUpdater
{
    [self dismissModalViewControllerAnimated:YES];
}

但是由于某种原因,选择器永远不会被调用。我也尝试过在模式下运行它NSRunLoopCommonModes,但这也不起作用。

我一定是做错了什么,但我看不到是什么...

编辑:委托回调实际上发生在 中NSOperationQueue,这可能意味着它在将消息发送回视图控制器时不在同一个线程上?所以我尝试了

[self performSelector:@selector(downloadQueueComplete) withObject:nil afterDelay:0.0 inModes:[NSArray arrayWithObject:NSRunLoopCommonModes]];

其次是

- (void)downloadQueueComplete
{
    [delegate assetLoaderServiceDidFinishLoading:self];
}

但是 performSelector 似乎也没有在这里工作。

4

2 回答 2

2

跟进您对线程问题的建议,您会尝试:

[self performSelectorOnMainThread:@selector(downloadQueueComplete) withObject:nil waitUntilDone:YES]];
于 2012-06-29T11:25:24.017 回答
1

排序!在 AssetLoaderService 中,我必须在主线程上执行选择器:

 [self performSelectorOnMainThread:@selector(downloadQueueComplete) withObject:nil waitUntilDone:YES];

之后,以下所有调用都在正确的线程上。:)

于 2012-06-29T11:25:53.387 回答