4

这是问题 - 我有一个类,它是 UIView 的子类(一张卡片)。它在自身上创建一个按钮,并在用户触摸它时调用 changeStateIndicator:。

然后在按下按钮后卡片必须翻转,并且按钮应该改变它的颜色(实际上是图像)。但它根本没有发生,所以翻转在按钮改变之前开始。这是我的代码:

//Adding a button to my view
UIButton *changeStateButton = [UIButton buttonWithType:UIButtonTypeCustom];
[changeStateButton setImage:[UIImage imageNamed:imageToInitWith] forState:UIControlStateNormal];
[changeStateButton setImage:[UIImage imageNamed:imageToInitWith] forState:UIControlStateHighlighted];
changeStateButton.frame = CGRectMake(0, 0, 30, 30);
changeStateButton.center = CGPointMake(self.bounds.size.width/2+([myWord length]*8)+17, 35);
changeStateButton.tag = 77;
[changeStateButton addTarget:self action:@selector(changeStateIndicator:) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:changeStateButton];

//Method which is called when the button is touched
- (void)changeStateIndicator:(UIButton *)sender
{
    [sender setImage:[UIImage imageNamed:@"StateYellow"] forState:UIControlStateNormal];
    [sender setImage:[UIImage imageNamed:@"StateYellow"] forState:UIControlStateHighlighted];
    currentWord.done = [NSNumber numberWithInt:currentWord.done.intValue-10];
    [self prepareForTest];
}

//Method which flips the card
- (void)prepareForTest
{
    testSide = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"cal_small3"]];
    [UIView transitionFromView:self toView:testSide duration:0.5 options:UIViewAnimationOptionTransitionFlipFromRight completion:nil];
}

我的猜测是发件人在方法 -changeStateIndicator 结束之前不会更改其图像,但我不太确定这是实际问题。请帮帮我。

4

2 回答 2

3

试着推迟这个电话:

dispatch_async(dispatch_get_main_queue(), ^{ [self prepareForTest]; });

如果那种工作,但它仍然不是你想要的,那么使用 dispatch_after() 或

[self performSelector:@selector(prepareForTest) withObject:nil afterDelay:0.25f];

(如果需要,您可以使用时间为“0”的第二次呼叫而不是调度 - 同样的事情。)

于 2012-07-24T22:21:16.257 回答
0

您需要在运行循环中再执行一次,以便按钮在drawRect:调用其方法时重绘自身。该setImage:方法只是设置它在这样做时将使用的图像。相反,您在此之前启动动画。这就是为什么一个非常短的延迟可以解决问题的原因。

解决这个问题的另一种可能在美学上更具吸引力的方法是为按钮图像更改设置动画。当该动画完成时,启动另一个。

于 2012-07-24T22:16:58.517 回答