Change UITextView text color with animation.
- by f0rz
Hi !
Just a simple question.
Is it possible to change the text color of UITextView with a animation?
[UITextView beginAnimations:nil context:NULL];
[UITextView setAnimationDuration:2.0];
textView.textColor = [UIColor grayColor];
[UITextView commitAnimations];
Cheers!
- Martin