1

我有一个 UILabel 和 UIProgressView 我要对其进行多次更新,但是在我的通信对象完成之前什么都不会呈现。

我有这个 ViewController:

@interface UpdateServerViewController : UIViewController <TaskController> {
    AgentAssetManager * agentAssetManager;
}

@property (strong, nonatomic) IBOutlet UIButton * updateNowButton;
@property (strong, nonatomic) IBOutlet UILabel * statusLabel;
@property (strong, nonatomic) IBOutlet UILabel * lastUpdateSuccessTimeLabel;
@property (strong, nonatomic) IBOutlet UILabel * lastUpdateAttemptTimeLabel;
@property (strong, nonatomic) IBOutlet UILabel * lastUpdateResultLabel;
@property (strong, nonatomic) IBOutlet UIProgressView * progressView;

- (IBAction) updateNow:(id) sender;
- (void) updateLabels;
- (void) scheduleInNextRunloopSelector:(SEL)selector;
- (void) taskSetStatus:(NSString *)status;
- (void) taskFinishedSuccessfully;
- (void) taskFinishedUnSuccessfully;

@end

updateNow 方法调用 AgentAssetManager:

[self scheduleInNextRunloopSelector:@selector(updateTime:)];

 McDbg(m, d+1, @"Calling AgentAssetManager sendToServer");
//    [statusLabel setText:@"Contacting Server"];
[agentAssetManager sendToServer:true taskController:self];

AgentAssetManager sendToServer 执行一系列步骤,并通过 TaskController 协议将通知发送回 UpdateServerViewController:

- (void) sendToServer:(Boolean) notifyUser 
   taskController:(id<TaskController>) taskCtlr
{
char *          m = "AgentAssetManager.sendToServer";
int             d = 0;
int             steps = 6; // Total number of steps

McDbg(m, d, @"Send Asset data to server");
McDbg(m, d+1, @"Notify User about status/errors=%s",
      (notifyUser) ? "YES" : "NO");

if (taskCtlr != nil) {
    [taskCtlr taskSetProgress:(float)1/(float)steps];
    [taskCtlr taskSetStatus:@"Checking if server is reachable"];
}

McDbg(m, d+1, @"SLEEPING");
sleep(5); // XXX tmp debug

ServerStatusManager *statusMgr = [[ServerStatusManager alloc] init];
Boolean ready = [statusMgr isServerReady];
McDbg(m, d+1, @"Server Status ready=%s", (ready) ? "YES" : "NO");
if (!ready) {
    NSString *msg = @"Server could not be reached";
    McLogWarn(m, @"Server Not ready %@", [statusMgr serverUrlBase]);
    [self updateResult:false];
    if (notifyUser)
        [McUiError showMessage:msg];
    if (taskCtlr) {
        [taskCtlr taskSetStatus:msg];
        [taskCtlr taskFinishedUnSuccessfully];
    }
    return;
}

McDbg(m, d+1, @"Getting Asset data");
if (taskCtlr != nil) {
    [taskCtlr taskSetProgress:(float)2/(float)steps];
    [taskCtlr taskSetStatus:@"Gathering data"];
}

... etc ....

这里是 UpdateServerViewController taskSetProgress 和 taskSetStatus:

- (void) taskSetStatus:(NSString *) status
{
char *          m = "UpdateServerViewController.taskSetStatus";
int             d = 0;

McDbg(m, d, @"Status=<%@>", status);
[statusLabel setText:status];
McDbg(m, d+1, @"Finished");
}

- (void) taskSetProgress:(float) percent
{
[progressView setHidden:false];
[progressView setProgress:percent animated:YES];
}

调试输出清楚地表明 UpdateServerViewController taskSetProgress 和 taskSetStatus 在他们假设的时候被调用。问题是新的设置值在整个 agentAssetManager.updateNow 方法完成之前不会生效。

基于在此站点上搜索类似的 UILabel 问题,我添加了一个计时器方法:

- (void) scheduleInNextRunloopSelector:(SEL)selector 
{
char *          m = "UpdateServerViewController.scheduleInNext";
int             d = 0;

McDbg(m, d, @"Starting");
NSDate *fireDate = [[NSDate alloc] initWithTimeIntervalSinceNow:0.5]; // 500 ms
NSTimer *timer = [[NSTimer alloc]
                  initWithFireDate:fireDate interval:0.5 target:self
                  selector:selector userInfo:nil repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];

}

- (void)updateTime:(NSTimer *)timer 
{
char *          m = "UpdateServerViewController.updateTime";
int             d = 0;

McDbg(m, d, @"Starting");
[statusLabel setText:@"XXX Timer called"];
}

无论有没有计时器,问题都是一样的。使用定时器,调试显示定时器在 agentAssetManager.updateNow 被调用之前被调度,但 updateTime 方法直到 agentAssetManager.updateNow 完成后才被调用。甚至在 updateNow 中使用 sleep(5) 来避免线程竞争条件也是如此。

调试显示所有 UpdateServerViewController 和 AssetAgentManager 似乎都在线程 1 中运行。除了上述计时器之外,我不执行任何 NSRunLoop。

我一定错过了一些基本的东西。任何帮助将不胜感激!

4

1 回答 1

0

确保在主线程中进行任何 ui 更改。

你可以尝试这样的事情:

dispatch_sync(dispatch_get_main_queue(), ^{
        [statusLabel setText:@"XXX Timer called"];
    }
);
于 2012-02-24T21:03:19.707 回答