I use the code in follow to do the scaling
CGAffineTransform currentTransform = self.imageView.transform;
CGAffineTransform newTransform = CGAffineTransformScale(currentTransform, sl, sl);
[self.imageView setTransform:newTransform];
,but i found it scales around the image center,is there any methods that i can use to make it scales around my touch center?