I need to make an animation to a UIImage according to an audio file; when the sound starts i need to make a zoom to a certain point and then to apply the same animation for zooming out. I’ve tried to apply CGAffineTransformMakeScale but it does not make an animation. Which is the right way to apply a zoomin/out to an image?
Share
put the image in a UIImageView, and then use uiview animation, re-set the frame
example :
at first, you deploy the image as usual
and then you implement the animation code to make the view larger
or you can use the method animate (which is a little bit more advance, but better i think)
good luck 😀