Hello,
I have a simple UIImageView with an image that is larger then the display (600x1400). The image starts with Fit to Aspect, so the bounds of the UIImgageView report 320x750, still larger then the display, but that's OK. I know of a point (300, 150) relative to the original dimensions of image (600x1400) that I want to scale and position to. If I setup a basic animation to handle the position and scale (zoom, transform) via core animation, the scale happens, but I never end up at the point I want. Instead, it appears I have to calculate the point based on the scale I WILL be at once transformed.
Is there something obvious I'm missing? I've tried using convertPoint:toView, but it always returns the same point I just gave it.