Can anyone guide me in the right direction on figuring out how to animate a UIImageView like so:
On the initial load of the app, a UIImageView will come in from the top of the screen and then bounce (up and down) into the bottom a couple times before settling at the bottom.
I know how to animate it where it just moves along the Y axis, but how to do the slight bounce effect at the end?
Thanks!
One way to achieve this (I’ve used this method with great success) is to use nested animations. You could take advantage of the UIView + (void)animateWithDuration:animations method.
Here’s the pseudo for it: