I am using the following to scale image up but it\'s scaling from it\'s left top point, how can I make the scale from center
[UIView animateWithDuration:duration
this can be the block of animation for the scale up the image
here as theView U Can Use the uiimageview
[UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:GROW_ANIMATION_DURATION_SECONDS]; theView.transform = CGAffineTransformMakeScale(1.2, 1.2); [UIView commitAnimations];