iPad: Animer UILabels changement de couleur

J'ai un label qui ouvre et affiche des points dans mon application. J'utilise le code suivant pour créer l'étiquette d'obtenir, à plus grande échelle, plus petite. Je tiens également à animer le changement de couleur du violet au vert. Quelqu'un peut-il m'indiquer une ressource dans la réalisation de cet?

mLabel.textColor = [UIColor purpleColor];

 [UIView beginAnimations:nil context:NULL];
 [UIView setAnimationDuration:1.0];
 [UIView setAnimationDelegate:self];
 mLabel.transform = CGAffineTransformMakeScale(1.5,1.5);
 [UIView setAnimationRepeatCount:1];
 mLabel.transform = CGAffineTransformMakeScale(0.5,0.5);
 mLabel.textColor = [UIColor greenColor];
 [UIView commitAnimations];
InformationsquelleAutor Oh Danny Boy | 2010-10-15