What is the best solution for simple iOS text/label animation? The details: user need to see one label on the iOS screen with changed text from array de 10-15 words, one word by step separated by white screen.The show time the one word is 800-900 ms and the show time the white screen is 500 ms. There is one kind of the attention test.
What is the best solution for simple iOS text/label animation? The details: user need
Share
If you just want to flash words, you can use
NSTimeror justperformSelector:If you wanted to do some animation of the appearance or disappearance of the text (e.g. fade it in or out), you could combine this with an
animateWithDurationor other animation construct.