0

In storyboard, is this the correct way to add a scrollview?

drag a view controller (comes with a view) drag a uiscrollview on it

or

drag a view contorller remove the regular uiview in it and drag a uiscrollview directly on the controller

What would be the difference ?

Ayrad
  • 3,996
  • 8
  • 45
  • 86

1 Answers1

1

The difference is simple. Every UIViewController has one root view (the view it controls).

Either you put your UIScrollView to the root view. Or you make the root view to be an instance of UIScrollView.

Sulthan
  • 128,090
  • 22
  • 218
  • 270