I have a calculator-like with UIButtons
for the digits (0 to 9) and one UILabel
to display the user's inputs.
I would like that for each input, the digits already in the label moves on the left with a slide animation and the new digit appear from the bottom with an animation. How can I do that?
I tried with a CATransition
with kCATransitionMoveIn
type but it moves the all label (which makes probably sense as it works on the layer level).
But how can I do it if I just want to move the content (the text) and not the frame or layer?