Found my own work around solution and figure I'd post it for any future references as don't you hate unsolved links from google?
I was transforming the imageview by the degree during touchesMoved, so I just copied that each time to a CGFloat property.
Then at touchesEnded -
gView.transform = CGAffineTransformMakeRotation(endDegree) ;
It haps so fast you can't tell and it makes the image appear where the moved transforms last left it. Put in a min swipe distance check also or it looks dorky when you just touch the screen and let off, your image looks like a crack head.
peace
|