0

我有一个启动更新过程的 UIAlertView。
UIAlertView 询问用户是否要更新。

这是我的代码:

- (void)reachabilityChanged:(NSNotification *)notification {
    if ([connection isReachable]){
        [updateLabel setText:@"Connection Active. Checking Update Status"];
        [[[UIAlertView alloc] initWithTitle:@"Update Available" message:@"Your File Database is Out of Date. Would you like to Update?\nNote: Updates can take a long time depending on the required files." delegate:self cancelButtonTitle:@"Later" otherButtonTitles:@"Update Now", nil] show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    if (buttonIndex == 1) {
        [self updateFiles:[UpdateManager getUpdateFiles]];
    }
}

上面的代码运行良好,但是,在我的 updateFiles: 方法中,我需要一些 UI 调整。

- (void)updateFiles:(NSArray *)filesList {
    for (NSDictionary *file in filesList) {
        [updateLabel setText:[NSString stringWithFormat:@"Downloading File: %@", [file objectForKey:@"Name"]]];
        [UpdateManager updateFile:[file objectForKey:@"File Path"]];
    }
    [updateIndicator stopAnimating];
    [updateLabel setText:@"Update Completed"];
}

UIAlertView 直到 updateFiles 方法中的 for 语句运行后才会关闭。

我无法让 updateLabel 显示它当前正在下载的文件,但在更新过程结束时,我们确实会在标签中看到“更新完成”。

有人可以帮忙吗?

更新

我开始怀疑这更像是一个被一些繁重的同步进程延迟的进程。例如,我的[UpdateManager getUpdateFiles]方法很繁重,涉及从网络获取资源。我的[UpdateManager updateFile:[file objectForKey:@"File Path"]];方法也是如此。

有什么办法可以强制 UI 更新优先于这些方法?

我只是想给用户一些关于正在发生的事情的反馈。

4

1 回答 1

0

我找到了解决方案。

我无法更新 UI 并在同一个线程上处理一些繁重的方法。
由于我只能在主线程上更新 UI,我不得不进行一些重新组织以确保进程在后台线程上,然后将 UI 更改提升到主线程。

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    if (buttonIndex == 1) {
        [self performSelectorInBackground:@selector(updateFiles:) withObject:[UpdateManager getUpdateFiles]];
    }
}

- (void)updateFiles:(NSArray *)filesList {
    for (NSDictionary *file in filesList) {
        [updateLabel performSelectorOnMainThread:@selector(setText:) withObject:[NSString stringWithFormat:@"Downloading File: %@", [file objectForKey:@"Name"]]];
        [UpdateManager updateFile:[file objectForKey:@"File Path"]];
    }
    [updateIndicator stopAnimating];
    [updateLabel setText:@"Update Completed"];
}

因此,我发送updateFiles:到后台并提升setText:主线程的任何其他 UI 更改。

于 2013-04-30T16:41:36.097 回答