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 delay:delay options:options
animations:^{
myImageView.frame = frame;
myImageView.alpha = alpha;
}
completion:^(BOOL finished) {
}
];
this can be the block of animation for the scale up the image
here as theView U Can Use the uiimageview
this will work perfectly
Good Luck
Try this:
It's working for me.