Storyboard UIScrollView contentSize?

后端 未结 8 1738
-上瘾入骨i
-上瘾入骨i 2020-12-14 20:20

I feel like I have touched on every single possible cause for stopping this, but I have a UIScrollView in my Storyboard hooked up with an outlet and in the viewDidLoad I set

8条回答
  •  不思量自难忘°
    2020-12-14 20:39

    Check these

    • User Interaction enabled
    • Outlet connected
    • Included contentsize greater than bounds
    • scrolling Enabled

    eg

    scrollView.contentSize = CGSizeMake(320, 640);
    

    My storyboard looks like this for scrollview [working]

    enter image description here

提交回复
热议问题