1

我试图在我的屏幕上突出按钮,我想更改它们的背景图像,等待几秒钟,恢复背景图像,与下一个按钮相同。

我写了这段代码:

-(void)animateButtons
{
    UILabel * lbl = [[UILabel alloc] initWithFrame:CGRectMake(0, scroll.frame.origin.y-20, [UIScreen mainScreen].bounds.size.width, 20)];
    [lbl setTextAlignment:NSTextAlignmentCenter];
    for(int c=0;c<arr.count&&animationRunning;c++)
    {
        MenuItem * m = [arr objectAtIndex:c];
        [lbl setText:m.name];
        MyButton * b = (MyButton*)[self.view viewWithTag:c+1];
        NSMutableString * str = [[NSMutableString alloc]initWithString:m.image];
        [str appendString:@"_focused.png"];
        [b setBackgroundImage:[UIImage imageNamed:str] forState:UIControlStateNormal];
        sleep(2.5);
        str = [[NSMutableString alloc]initWithString:m.image];
        [str appendString:@"_normal.png"];
        [b setBackgroundImage:[UIImage imageNamed:str] forState:UIControlStateNormal];
        if(c==arr.count-1)
        {
            animationRunning=false;
        }
    }
}

该方法以这种方式调用,因此它不会阻塞 UI 线程。

[NSThread detachNewThreadSelector:@selector(animateButtons) toTarget:self withObject:nil];

但它只是改变第一个按钮背景,然后什么都没有。

使用 NSLog 我可以看到该方法仍在运行,但按钮没有更改。

我怎样才能做到这一点?

感谢和抱歉我的英语不好。

4

2 回答 2

1

您不能从后台线程更改 UI 属性,这会导致各种问题,包括崩溃。为了保留您的原始算法,您可以将 UI 更新分派回主线程。但这不是线程的一种非常有效的使用方式,只需使用在主线程上运行的简单 NSTimer 即可。

于 2013-05-31T13:05:14.050 回答
0

如前所述,在主线程上执行所有 UI 更改。这是完成您想要做的事情的一个选项,不需要 NSTimer。

-(void)animateButtons
{
    for (...)
    {
        // set focused state
    }

    [self performSelector:@selector(restoreButtons) withObject:nil afterDelay:2.5];
}

-(void)restoreButtons
{
    for (...)
    {
        // set normal state
    }
}
于 2013-05-31T13:12:36.197 回答