Please can someone help with a simple transform I am attempting...
The code below zooms a thumbnail image into one that fills the screen. The problem is the thumbnail isn't centered (its offset towards the right), so the zoom actually needs to be moving the image towards the left, as it zooms in.
[fullsizeImageButton setTransform:CGAffineTransformMakeScale(.5,.5)];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.9]; fullsizeImageButton.transform = CGAffineTransformMakeScale(1,1);
[UIView commitAnimations];
Thanks in advance for any help