I have created one UIView inside the UIScrollView from storyboard.
I want to set the frame to UIView programatically. I have tried to set frame using setFrame function programatically, but its not working for the UIView which is inside UIScrollView.
if I create one UIView inside the UIScrollView using [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 110)],and than change size of the view,it is work!
my code:
but I want to create a uiview by IB and set frame using setFrame function.
Most impornatant condition is Autolayout is "TRUE".