I have created a storyboard based project. In one of the view controller's view requires some extra elements to be placed which results in increasing the view height such that the view must now be scrollable. Is it possible to simply change the class type of UIView to UIScrollView in storyboard? Will it really convert the top level UIView to UIScrollView ? Just looking for a quick and easy way of doing this without much changes.
Thanks
You have to change the
UIView
type toUIScrollView
(identity inspector) and in the controllerviewDidLoad
method assign the view acontentSize
by casting the view to aUIScrollView
:You can open storyboard as an xml source code file, find view object and replace it with scrollview. Right-click on
.storyboard
file in Xcode and choose Open As → Source Code. Then search for your scene's xml snippet (for example, Cmd+F and type controllers name). Top view object will look like this:Change
view
element toscrollView
(don't forget the closing tag):Then open
.storyboard
with the Interface Builder. Your view now became a scrollview.This method has two advantages: you don't loose any constraints and you see all scrollview specific properties in the attributes inspector.
There's actually a much better way to do this.
UIView
in the StoryBoard and cut to your clipboard anything inside it.UIView
.UIScrollView
object into your StoryBoard.This method will preserve all delegate and IBOutlet settings you've configured for the things inside the view.
An easier method is to just use a scroll view and set the contentsize to be the same size as the frame - so there is no scrollable area. eg
then when you need to make your view larger, simply update this as required. You will need to ensure that bounce is turned off otherwise you'll still be able to drag around the scrollView though.