I have 2 ImageView in subview(UIView). I set zoom scale for foreground image by 0.3 point.
self.superImage_View.transform =CGAffineTransformMakeScale(1.3,1.3);
after that when i click on resize button i again change zoom scale of foreground image.
self.superImage_View.transform =CGAffineTransformMakeScale(1.0,1.0);
I also want to change zoom scale of background image by 0.3 point. I set pinch gesture on background image for zoom in/out.But the problem is i am unable to find out the scale of background imageview. Also if background imageview is zoom in/out by user after that on the click of resize button i am unable to decrease zoom by 0.3 scale point. I want same zoom decrease scale for both image doesn't matter the background imageview is zoom in/out or not. Please provide me any solution.