Wie animiere ich die Hintergrundfarbe eines UILabels?

Das sieht so aus, als sollte es funktionieren, tut es aber nicht. Die Farbe wird sofort grün.

self.labelCorrection.backgroundColor = [UIColor whiteColor];
[UIView animateWithDuration:2.0 animations:^{
    self.labelCorrection.backgroundColor = [UIColor greenColor];
}];

Antworten auf die Frage(22)

Ihre Antwort auf die Frage