Resetting the origin of a transformed UIView descends into craziness
I rotate/scale a UIVIew using [UIView transform:] and this works well. However, as soon as I change the view's frame origin the contents of the view begins to scale 'weirdly' even though I am not performing any further CGAffineTransforms. Why does this occur? How can I prevent it? Update 1: The docs suggest that the frame is invalid after a transform. Can I move the view via it's 'center' property instead? Update 2: Setting the views center did allow me to translate the view successfully after a transform had been applied. Can I move the view via it's 'center' property instead? The