I have a gridView, I use to display several GridViewCell : UIView. The GidViewCell adds an UILabel to itself and attaches anUITapGestureRecognizer to itself.

UITapGestureRecognizer *gestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped:)];
[self addGestureRecognizer:gestureRecognizer];
[gestureRecognizer release];

in tapped: I want to play some animation, including changing the background color of the label

- (void) tapped:(id)sender {
    [UIView animateWithDuration:1.0
                          delay:0
                        options:(UIViewAnimationOptionAllowUserInteraction)
                     animations:^{ 
                         [(UILabel *)[[self subviews] objectAtIndex:0] setBackgroundColor:[UIColor blueColor]];
                     }  
                     completion:^(BOOL finished){
                         [(UILabel *)[[self subviews] objectAtIndex:0] setBackgroundColor:[UIColor whiteColor]];
                     }
     ];     
[self.delegate didSelectGridViewCell:self];
}

But the label just flashes blue for a blink of an eye — if at all. If I use the same code but adjust the alpha of the label instead of the background color, everything works as expected.

Apple's docs lists backgroundColor as animatable. Is it? Am I doing something wrong?

link|improve this question

@bioffe as this is not a iPhone specific question, I'd say, [ios] would be the better tag – vikingosegundo Apr 10 at 8:17
Yes, [ios] is better tag. Thank you. BTW my UILabel's background does not animate with this solution. I have much better luck with CATextLayer adding to UILabel.layer. – bioffe Apr 10 at 14:49
feedback

1 Answer

up vote 5 down vote accepted

I've never tried this myself but I know of someone who has. I don't know if this is a bug in the documentation or in the code. I'm assuming the latter since UILabel inherits from UIView and I know for sure that you're able to animate the background of a UIView. The workaround apparently is to drill down to the underlying CALayer and set the background color there.

link|improve this answer
I'll try. Thanks – vikingosegundo Jun 22 '11 at 15:56
works! [[(UILabel *)[[self subviews] objectAtIndex:0] layer] setBackgroundColor:[UIColor blueColor].CGColor]; – vikingosegundo Jun 22 '11 at 16:00
@vikingosegundo: just for readability, there's no need to cast the first subview to UILabel. All UIViews have a layer with a backgroundColor you can animate. Even better, store a reference to the label, instead of relying on it being the first subview of the view you're working from. – Dondragmer Apr 10 at 8:56
With old compilers you got ugly warnings if not casting. – vikingosegundo Apr 10 at 11:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.