5

I have a UIScrollView which contains more subviews then the screen can display (that's why I am using the scrollview), but the scrollview doesn't allow for the bottom most subviews to scroll into view (they only bounce back, when scrolled down to the bottom, but are unreachable for user interaction) Any suggestions?

mrd
  • 4,561
  • 10
  • 54
  • 92

1 Answers1

5

I was using AutoLayout with the suggested constraints. Removing a single constraint fixed it, though it was just a lucky guess. Still don't understand why removing that constraint from the myriad of suggested constraint fixed the problem. I only understand now, that when using AutoLayout, UIScrollViews may not work if the constraints are incorrect, or no constraints are applied at all.

mrd
  • 4,561
  • 10
  • 54
  • 92