I have a UIImageView inside a UIScrollview, and when I try to pinch and zoom, the image jumps down and right (I think to coordinates 0,0 instead of centered) but stays the same size, and in the same place, until I stop the pinch, and then it pings back to its former centered self.
I got NSLog to print out the zoomScale while zooming, and just kept printing 0.5 until I let go and then it prints 1.0 once.
I'm really at a loss here, all the tutorials on this seem so basic and easy, I don't know where I'm going wrong.
Notes: Both the scrollView and the ImageView are in storyboard, connected to outlets. The viewController that they are in is a UIScrollView delegate that implements viewForZoomingInScrollView:. minimumScale is 1.0, maximumScale is 4.0, though these numbers don't seem to have any effect.