Scenario:
I have created an app that show text randomly on iphone. After each 1 second, some 60-100 characters are drawn on screen using quartz 2d graphics. (OK thats easy).
I want when the last character is shown it should be animated in easeoutBounce style.
1)How i will get the easeoutBounce effect? (You can check jquery easing plugin for easeoutBounce effect)
2)Not sure how i can increase performance. Any better way to apply animation on a single character without any need of drawing the other characters? I need to draw all characters again n again just to show the last character in different font-sizes (for easeOutBounce).