Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scroll bar scrolls but UIScrollView doesn't scroll

I have components in a UIScrollView. My scroll view works when it was in iOS 10 and Xcode 8 but after the update, my scroll view does not scroll. However, the scroll bar does scroll and can keep scrolling until it gets smaller and smaller. It is just the elements in the scroll view itself that doesn't scroll.

I have tried doing content size bigger than the frame size but it does not fix it. Here is my current views hierarchy.

enter image description here

If anyone can help me debug this, it would be greatly appreciated.

like image 287
ndduong Avatar asked Sep 02 '25 10:09

ndduong


1 Answers

I fixed this by adding a content view to the scroll view, and then the scroll view should be the subview of main view. The hierarchy should look like this.

enter image description here

like image 118
ndduong Avatar answered Sep 05 '25 02:09

ndduong