I created a UIScrollView in a storyboard, bound it as a property to the view controller, and now I'm trying to add some pagination subzones. But, although graphically I set the dimensions in the storyboard, the UIScrollView frame reaches 0,0,0,0. Do I have to rigidly set the dimensions, although I have already outlined them graphically in the storyboard?
Also, something like related, is it possible to customize subviews in a storyboard for use in this scroll? It seems that I cannot create such a view if it is not already in the controller. Since I have only one controller and potentially several views that I want to configure graphically, how can I do this without doing this programmatically?
source share