Zoom in Zoom out animation IOS

      Zoom in and Zoom out animation using  CGAffineTransformation In this post, I am going to share a simple animation for ZOOM IN and ZOOM OUT of a UIView in IOS. Code for zoom in:  [UIView animateWithDuration:1.0 animations:^{         imgv.transform = CGAffineTransformMakeScale(1.0,1.0);       }completion:^(BOOL finished){       […]

Zoom in Zoom out animation IOS Read More »