I've created an UIView and renamed the class to UIScrollView. This is the code for making the UIView bigger then te screen:
Everything works so far but I want to add a lot of elements to that view. The problem is I can't add them with Interface Builder because I can't reach the space outside the window. In other words, I'm unable to scroll in Interface Builder and therefor unable to add more elements.
When I've created some elements (UIButton, UILabel, etc.) and I select all of them and drag them to somewhere below the window and executed the application, I'm able to scroll and see those elements but can't reach them anymore in Interface Builder...
I don't want to add all of those buttons, labels, etc. via code.
How to solve this problem?
Code:
settingsUIScrollView.contentSize = CGSizeMake(320,600);
Everything works so far but I want to add a lot of elements to that view. The problem is I can't add them with Interface Builder because I can't reach the space outside the window. In other words, I'm unable to scroll in Interface Builder and therefor unable to add more elements.
When I've created some elements (UIButton, UILabel, etc.) and I select all of them and drag them to somewhere below the window and executed the application, I'm able to scroll and see those elements but can't reach them anymore in Interface Builder...
I don't want to add all of those buttons, labels, etc. via code.
How to solve this problem?