I\'m trying to duplicate the Secret App\'s Text Label transition. Does anyone the best way to approach it?
It looks like they have each letter start out as clear tex
Here's a possible way.
First, let's note that a UILabel can hold and display an NSAttributedString. Using NSMutableAttributedString, you can make each letter a different color.
So, start with two labels, one right on top of the other (i.e. in front of it, hiding it), with the same text but different letter colorings. Now fade the alpha of the top one to zero, thus gradually revealing the one behind it. Thus each letter will seem gradually to assume the color of the letter behind it.