So I have this transform (UIView
animate) that scales it to 0.4 and I want to do another transform to 0.0 from that 0.4. But when I try that it doesn't work and it doesn't animate, it just pops (no animation).
Asked
Active
Viewed 79 times
-1

Wex
- 4,434
- 3
- 33
- 47

DemosJarco
- 587
- 4
- 18
-
3Can you share your code? I mean, what have you tried? – Abhishek Jun 04 '15 at 03:40
1 Answers
0
If you scale to 0.0 the view will vanish, if you want it to go 'back' then you want to animate the view back to CGAffineTransformIdentity
See this question for an example of a scaling 'bounce' animation that uses nested animation calls.
If you're doing something drastically different then you'll have to provide source code of what you're doing and explain what effect you're after so we can help.