我试图在我的屏幕上突出按钮,我想更改它们的背景图像,等待几秒钟,恢复背景图像,与下一个按钮相同。
我写了这段代码:
-(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 我可以看到该方法仍在运行,但按钮没有更改。
我怎样才能做到这一点?
感谢和抱歉我的英语不好。