I want to decrease the bottom height of UIScrollView. For more details click on this link scrollview image
in that image red color box is extra space. dashly image is another view. My scroller runs between Apple and Dashly view. When i move that scroller content size bottom shows more height. I done this through storyboard. Added constraints also.
//_scrollViewOutlet.contentSize = CGSizeMake(320, 650);
_scrollViewOutlet.contentInset = UIEdgeInsetsMake(0, 0, -7, 0);
i tried the above two lines but it is not worked. Thanks in advance.