Change UITextView text color with animation.
Posted
by f0rz
on Stack Overflow
See other posts from Stack Overflow
or by f0rz
Published on 2010-04-29T13:45:04Z
Indexed on
2010/04/29
13:47 UTC
Read the original article
Hit count: 835
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
© Stack Overflow or respective owner