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];
}];