I am making a custom crop image controller. UIScrollView is the main view in which I add scroll content (UIImageView). Scrolling and zooming works good, but what I want to do now is to add a crop area so a user can scroll/zoom image inside that area. I added UIView on top of everything just to indicate the crop area. If I set the UIScrollView frame to fit screen size (see picture 1) then user is not able to scroll the top of the content (yellow image) down so it alines with the to of the crop area (because image fits the UIScrollView, it is not scrollable). Picture 1:

If I make the UIScrollView the size of the crop are (see picture 2), it works perfect except I can not see anything behind the scroll area (black colour). Picture 2:

Is there any way to set the scroll area to crop area and leave the UIScrollView frame to fit screen size? Or should I approach the problem different?
UIScrollViewascontentSize? - sage444