Despite having more elements than fit the screen I can't seem to get a scroll behavior via touch or scroll wheel in the simulator or actual watch.
Asked
Active
Viewed 1,514 times
3 Answers
12
Tables don't behave properly when nested within a group. Remove the group and your tableview should scroll.
The HIG also mentions not to do this: https://developer.apple.com/watch/human-interface-guidelines/ui-elements/

bgilham
- 5,909
- 1
- 24
- 39
-
1Thank you, that did it. Good to understand the reason why too. – ferik May 20 '15 at 13:38
-
I too have tried to put a table in a group and realised it won't scroll. I have a pages based app with table views all working fine, however the table cells are making the pages indicator difficult to see because they scroll behind it. I was hoping to add a group so that I can size the table to just above the pages indicator. This works and the page indicator is then clearly visible but the table no longer scrolls. I am unable to resize the actual Table can anyone offer a way to achieve what I am after? – Plasma Oct 02 '16 at 10:51
5
My one wasn't scrolling because I had "Fixed to screen edges" enabled in the storyboard for that interface controller. Make sure you have that disabled.

Stefan S
- 721
- 10
- 13
-
saved my day. Worked like a charm. This happens in Xcode 11.2 only. In older version no problem – Rajan Twanabashu Dec 03 '19 at 05:33