Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to scroll UITableView in Storyboard editor of Xcode 5?

Tags:

Storyboard had great feature to design tables of static cells. Until XCode 5 is was possible to compose long list of cells and scroll the table to edit them.

With XCode 5 the scrolling simple stopped working - instead of scrolling the table, now it scrolls entire the storyboard.

Did anyone solved this problem? I'm completely stuck with my long tables of static cells...

like image 841
AlexeyVMP Avatar asked Sep 26 '13 13:09

AlexeyVMP


People also ask

How do you scroll on a storyboard?

You can scroll the scrollview in the Storyboard / Interface builder! Select the view inside scrollview in Document Outline, then scroll using your mouse or trackpad, you can see the view move.

Is Tableview scrollable?

To be precise, table views and collection views are also scroll views. If you look at the documentation of the UITableView class, you will see that it descends from UIScrollView.


2 Answers

In the storyboard view uncheck Under Top Bars with the problematic scroll view selected.

This allowed me to scroll all the way down.

This only occurred in one of my views, so still not sure what it happens.

like image 152
DogCoffee Avatar answered Oct 03 '22 17:10

DogCoffee


I just tried it in my XCode 5. After selecting one of the other not covered table cells I am able to scroll down to the other hidden table cells. Does this work for you too?

Similar post, maybe this helps you too:

Can't scroll to the bottom of a long Static TableViewController in XCode 5 Interface Builder to edit the cells below the fold

like image 23
Prine Avatar answered Oct 03 '22 18:10

Prine