I'm trying to build a scrollview form in my app. So, there is the EditForm (which is a uiviewcontroller) which contains a scrollview which contains a contentView (uiview), which contains my fields.
How do I initialize all these views with autolayout ? To say to the scrollview to take the entire size of the contentView (i'm adding subview on contentView), to the scrollView to be on the uiviewcontroller, and of course, for the scrollView to scroll properly depending of the size of contentView.
Thanks :)