I have multiple UIImageView's
within a UIView
. These UIImageViews
have been transformed.
When the gesture is applied to any one of the UIImageView's
the overlapping imageViews should get displaced in such a way that the move outside the UIImageView's
frame and we get a full view of the image (all of this would be done in an animating manner).
Also please note that the images will have been transformed so I wont be able to use the frame properties.
Right now I'm using CGRectIntersectsRect
but its not giving me the desired effect.